[PATCH] xfree86: Add quirk for Acer AL1923 monitor

Tormod Volden lists.tormod at gmail.com
Sun Feb 8 13:36:31 PST 2009


From: Tormod Volden <debian.tormod at gmail.com>

The monitor reports aspect ratio instead of image size in the detailed
timings. https://bugs.launchpad.net/bugs/320930
Thanks to Sorin Enache for testing.

Signed-off-by: Tormod Volden <debian.tormod at gmail.com>
---
 hw/xfree86/modes/xf86EdidModes.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/hw/xfree86/modes/xf86EdidModes.c b/hw/xfree86/modes/xf86EdidModes.c
index 5ed61c1..3e9514b 100644
--- a/hw/xfree86/modes/xf86EdidModes.c
+++ b/hw/xfree86/modes/xf86EdidModes.c
@@ -165,6 +165,11 @@ static Bool quirk_detailed_use_maximum_size (int scrnIndex, xf86MonPtr DDC)
 	(DDC->vendor.prod_id == 0 || DDC->vendor.prod_id == 0x2a00))
 	return TRUE;
 
+    /* LP #320930: Acer AL1923 */
+    if (memcmp (DDC->vendor.name, "ACR", 4) == 0 &&
+	DDC->vendor.prod_id == 0x783)
+	return TRUE;
+
     return FALSE;
 }
 
-- 
1.6.0.4



More information about the xorg-devel mailing list