summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorTormod Volden <debian.tormod@gmail.com>2009-04-01 19:32:21 +0200
committerKeith Packard <keithp@keithp.com>2009-05-08 12:34:00 -0700
commitb3c42e6450b0af97ead4f410983c803a959e1d04 (patch)
treedf7561f2ea75d835a2cd0d493d196b2d2b115f61 /hw
parent96eede556ac9f95204fa54287f74794acdbf3a2b (diff)
xfree86: edid quirk for Philips LCD LP154W01-TLAJ
This panel reports its vertical size in cm. X.Org bug#21000 <http://bugs.freedesktop.org/show_bug.cgi?id=21000> Signed-off-by: Tormod Volden <debian.tormod@gmail.com> Signed-off-by: Julien Cristau <jcristau@debian.org> (cherry picked from commit b1dab580bdfb4acfe3feddeda6e760098ec4922a) Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/xfree86/modes/xf86EdidModes.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/xfree86/modes/xf86EdidModes.c b/hw/xfree86/modes/xf86EdidModes.c
index 5ed61c1d0..92eb196de 100644
--- a/hw/xfree86/modes/xf86EdidModes.c
+++ b/hw/xfree86/modes/xf86EdidModes.c
@@ -155,6 +155,11 @@ static Bool quirk_detailed_v_in_cm (int scrnIndex, xf86MonPtr DDC)
DDC->vendor.prod_id == 13600)
return TRUE;
+ /* Bug #21000: LGPhilipsLCD LP154W01-TLAJ */
+ if (memcmp (DDC->vendor.name, "LPL", 4) == 0 &&
+ DDC->vendor.prod_id == 47360)
+ return TRUE;
+
return FALSE;
}