mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-05 01:48:02 +02: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>
(cherry picked from commit 58864146fb)
This commit is contained in:
parent
7972e2dade
commit
40c1287f36
1 changed files with 5 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue