xf86-video-intel: src/intel_driver.c

Carl Worth cworth at kemper.freedesktop.org
Fri Feb 22 17:19:34 PST 2013


 src/intel_driver.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit e2aaf4ed3333231cf8cadcf6362743593026cd19
Author: Carl Worth <cworth at cworth.org>
Date:   Fri Feb 22 14:44:09 2013 -0800

    Refuse to load driver for depth-8 X server.
    
    The driver is not functional at this depth, so tell the user as much and
    bail out.
    
    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=31375
    
    Reviewed-by: Eric Anholt <eric at anholt.net>

diff --git a/src/intel_driver.c b/src/intel_driver.c
index 7807106..7f11978 100644
--- a/src/intel_driver.c
+++ b/src/intel_driver.c
@@ -532,15 +532,15 @@ static Bool I830PreInit(ScrnInfoPtr scrn, int flags)
 		return FALSE;
 
 	switch (scrn->depth) {
-	case 8:
 	case 15:
 	case 16:
 	case 24:
 	case 30:
 		break;
+	case 8:
 	default:
 		xf86DrvMsg(scrn->scrnIndex, X_ERROR,
-			   "Given depth (%d) is not supported by I830 driver\n",
+			   "Given depth (%d) is not supported by intel driver\n",
 			   scrn->depth);
 		return FALSE;
 	}


More information about the xorg-commit mailing list