mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-06 13:03:36 +00:00
edid: Add quirk for Acer Aspire One 110
At least one revision of the AAO reports a 190x110mm maximum size but a 451x113mm mode. X.Org Bug 41141 <https://bugs.freedesktop.org/show_bug.cgi?id=41141> Signed-off-by: Ross Burton <ross@linux.intel.com> Reviewed-by: Daniel Stone <daniel@fooishbar.org> Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
This commit is contained in:
committed by
Jeremy Huddleston
parent
34b0e4eee9
commit
58864146fb
@@ -165,6 +165,11 @@ static Bool quirk_detailed_use_maximum_size (int scrnIndex, xf86MonPtr DDC)
|
||||
DDC->vendor.prod_id == 6400)
|
||||
return TRUE;
|
||||
|
||||
/* Bug #41141: Acer Aspire One */
|
||||
if (memcmp (DDC->vendor.name, "LGD", 4) == 0 &&
|
||||
DDC->vendor.prod_id == 0x7f01)
|
||||
return TRUE;
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user