xf86-video-intel: src/legacy/i810

Chris Wilson ickle at kemper.freedesktop.org
Thu Jul 31 08:19:24 PDT 2014


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

New commits:
commit ce804875914f52dba5356f8aefec850d411b051a
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Thu Jul 31 16:18:02 2014 +0100

    i810: Fix startup after marking GPU screens in the module
    
    Fixes regression from
    
    commit d6830190bc9956f485db6c3420f7a4a79793a693
    Author: Chris Wilson <chris at chris-wilson.co.uk>
    Date:   Wed Jul 23 10:53:40 2014 +0100
    
        sna: Disable all outputs when initializing as a slaved output provider
    
    Reported-by: Tobias Powalowski
    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 a1b73fd..3d53d04 100644
--- a/src/legacy/i810/i810_driver.c
+++ b/src/legacy/i810/i810_driver.c
@@ -152,7 +152,7 @@ static int i810_pitches[] = {
 static Bool
 I810GetRec(ScrnInfoPtr scrn)
 {
-   if (((uintptr_t)scrn->driverPrivate & 1) == 0)
+   if (((uintptr_t)scrn->driverPrivate & 3) == 0)
       return TRUE;
 
    scrn->driverPrivate = xnfcalloc(sizeof(I810Rec), 1);


More information about the xorg-commit mailing list