xserver: Branch 'master'

Dave Airlie airlied at kemper.freedesktop.org
Tue Apr 8 21:34:22 PDT 2008


 hw/xfree86/modes/xf86EdidModes.c |    6 ++++++
 1 file changed, 6 insertions(+)

New commits:
commit b19027fbaea4c3a146926e862983e0e3411fff3d
Author: Dave Airlie <airlied at linux.ie>
Date:   Wed Apr 9 14:27:58 2008 +1000

    quirk: add quirk for ACR 640x350 default mode is wrong
    
    RH #440186

diff --git a/hw/xfree86/modes/xf86EdidModes.c b/hw/xfree86/modes/xf86EdidModes.c
index 8f7d45d..09d0039 100644
--- a/hw/xfree86/modes/xf86EdidModes.c
+++ b/hw/xfree86/modes/xf86EdidModes.c
@@ -93,6 +93,12 @@ static Bool quirk_prefer_large_60 (int scrnIndex, xf86MonPtr DDC)
 	DDC->vendor.prod_id == 638)
 	return TRUE;
 
+    /* Acer F51 */
+    if (memcmp (DDC->vendor.name, "API", 4) == 0 &&
+	DDC->vendor.prod_id == 0x7602)
+	return TRUE;
+
+
     return FALSE;
 }
 


More information about the xorg-commit mailing list