summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2008-04-04 09:29:51 +1000
committerDave Airlie <airlied@redhat.com>2008-04-04 09:59:40 +1000
commitf0915fb3c4a9712200882440a64d11dc595a02bb (patch)
tree7043a3eb6a3a2db61ea2a6da0b988f5a7cf32bff
parent2e42b67b82db0f9128dd00e339b9dfdd9fe6d667 (diff)
quirk: add quirk for ACER EDID
-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 f15c39642..8f7d45dd6 100644
--- a/hw/xfree86/modes/xf86EdidModes.c
+++ b/hw/xfree86/modes/xf86EdidModes.c
@@ -158,6 +158,11 @@ static Bool quirk_first_detailed_preferred (int scrnIndex, xf86MonPtr DDC)
DDC->vendor.prod_id == 765)
return TRUE;
+ /* ACR of some sort RH #284231 */
+ if (memcmp (DDC->vendor.name, "ACR", 4) == 0 &&
+ DDC->vendor.prod_id == 2423)
+ return TRUE;
+
return FALSE;
}