diff options
author | Julien Cristau <jcristau@debian.org> | 2009-04-22 20:01:49 +0200 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-05-08 12:34:12 -0700 |
commit | eac2b3658aacc8a64dc3c0fd7cc8fd77abcc59af (patch) | |
tree | a12fe6bfca6edc30c1e4d521eee692b3638cd55d | |
parent | b3c42e6450b0af97ead4f410983c803a959e1d04 (diff) |
Bug#21324: Add quirk for Iiyama Vision Master 450
Reported-by: Jeremy Henty <onepoint@starurchin.org>
Signed-off-by: Julien Cristau <jcristau@debian.org>
(cherry picked from commit 0dfb97f15f591f85e079f5829c77d0c328d00464)
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | 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 92eb196de..54f2c6570 100644 --- a/hw/xfree86/modes/xf86EdidModes.c +++ b/hw/xfree86/modes/xf86EdidModes.c @@ -170,6 +170,11 @@ static Bool quirk_detailed_use_maximum_size (int scrnIndex, xf86MonPtr DDC) (DDC->vendor.prod_id == 0 || DDC->vendor.prod_id == 0x2a00)) return TRUE; + /* Bug #21324: Iiyama Vision Master 450 */ + if (memcmp (DDC->vendor.name, "IVM", 4) == 0 && + DDC->vendor.prod_id == 6400) + return TRUE; + return FALSE; } |