d15d772aa0
- xserver-1.5.0-fix-lsl-quirk.patch - fix the LSL quirk (#435216)
44 lines
1.5 KiB
Diff
44 lines
1.5 KiB
Diff
From c747030a49dd289e873e2b686cd129d840e55468 Mon Sep 17 00:00:00 2001
|
|
From: Dave Airlie <airlied@redhat.com>
|
|
Date: Thu, 27 Mar 2008 15:18:39 +1000
|
|
Subject: [PATCH] quirk: fix LPL monitors properly.
|
|
|
|
no point having a h cm fix when we really want to copy the sizes from the
|
|
other place.
|
|
|
|
RH BZ 435216
|
|
---
|
|
hw/xfree86/modes/xf86EdidModes.c | 9 +--------
|
|
1 files changed, 1 insertions(+), 8 deletions(-)
|
|
|
|
diff --git a/hw/xfree86/modes/xf86EdidModes.c b/hw/xfree86/modes/xf86EdidModes.c
|
|
index 2d1a6ab..777bb70 100644
|
|
--- a/hw/xfree86/modes/xf86EdidModes.c
|
|
+++ b/hw/xfree86/modes/xf86EdidModes.c
|
|
@@ -108,13 +108,6 @@ static Bool quirk_prefer_large_75 (int scrnIndex, xf86MonPtr DDC)
|
|
|
|
static Bool quirk_detailed_h_in_cm (int scrnIndex, xf86MonPtr DDC)
|
|
{
|
|
- /* Bug #10304: "LGPhilipsLCD LP154W01-A5" */
|
|
- /* Bug #12784: "LGPhilipsLCD LP154W01-TLA2" */
|
|
- /* Red Hat #435216 "LGPhilipsLCD LP154W01-TLAE" */
|
|
- if (memcmp (DDC->vendor.name, "LPL", 4) == 0 &&
|
|
- (DDC->vendor.prod_id == 0 || DDC->vendor.prod_id == 0x2a00))
|
|
- return TRUE;
|
|
-
|
|
/* Bug #11603: Funai Electronics PM36B */
|
|
if (memcmp (DDC->vendor.name, "FCM", 4) == 0 &&
|
|
DDC->vendor.prod_id == 13600)
|
|
@@ -137,7 +130,7 @@ static Bool quirk_detailed_use_maximum_size (int scrnIndex, xf86MonPtr DDC)
|
|
{
|
|
/* Bug #10304: LGPhilipsLCD LP154W01-A5 */
|
|
if (memcmp (DDC->vendor.name, "LPL", 4) == 0 &&
|
|
- DDC->vendor.prod_id == 0)
|
|
+ (DDC->vendor.prod_id == 0 || DDC->vendor.prod_id == 0x2a00))
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
--
|
|
1.5.3.7
|
|
|