xf86-video-intel: src/legacy/i810

Chris Wilson ickle at kemper.freedesktop.org
Thu Jul 19 01:42:08 PDT 2012


 src/legacy/i810/i810_driver.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9bd0f8f3e7783d7a6bab707fc08ec96830cd5809
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Thu Jul 19 09:40:07 2012 +0100

    i810: Correct the double negative and enable XAA when available
    
    Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>

diff --git a/src/legacy/i810/i810_driver.c b/src/legacy/i810/i810_driver.c
index 33b5aa4..b7212cf 100644
--- a/src/legacy/i810/i810_driver.c
+++ b/src/legacy/i810/i810_driver.c
@@ -1694,7 +1694,7 @@ I810ScreenInit(SCREEN_INIT_ARGS_DECL)
    if (pI810->LpRing->mem.Size != 0) {
       I810SetRingRegs(scrn);
 
-      if (pI810->noAccel && !I810AccelInit(screen)) {
+      if (!pI810->noAccel && !I810AccelInit(screen)) {
 	 xf86DrvMsg(scrn->scrnIndex, X_ERROR,
 		    "Hardware acceleration initialization failed\n");
       }


More information about the xorg-commit mailing list