From 775fc125aa7ecd0f054959ef210be2df4dc54345 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Thu, 3 May 2007 20:58:50 +1000 Subject: [PATCH] i810: be a bit more verbose about disabling DRI --- src/i810_driver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i810_driver.c b/src/i810_driver.c index 2a8b9fc4..baca21c3 100644 --- a/src/i810_driver.c +++ b/src/i810_driver.c @@ -848,11 +848,11 @@ I810PreInit(ScrnInfoPtr pScrn, int flags) if (!pI810->directRenderingDisabled) { if (pI810->noAccel) { - xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, "DRI is disabled because it " + xf86DrvMsg(pScrn->scrnIndex, X_WARNING, "DRI is disabled because it " "needs 2D acceleration.\n"); pI810->directRenderingDisabled=TRUE; } else if (pScrn->depth!=16) { - xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, "DRI is disabled because it " + xf86DrvMsg(pScrn->scrnIndex, X_WARNING, "DRI is disabled because it " "runs only at 16-bit depth.\n"); pI810->directRenderingDisabled=TRUE; }