Add EDID quirk for HP Compaq nc8430.
Like some other LPL panels, this one reports the vertical size in cm rather than mm. Patch taken from Launchpad bug #380009 <https://launchpad.net/bugs/380009> X.Org Bug 28414 <https://bugs.freedesktop.org/show_bug.cgi?id=28414> Signed-off-by: Christopher James Halse Rogers <christopher.halse.rogers@canonical.com> Reviewed-by: Adam Jackson <ajax@redhat.com> Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
parent
a2e67a6412
commit
4b88c7be8d
|
@ -145,6 +145,11 @@ static Bool quirk_detailed_v_in_cm (int scrnIndex, xf86MonPtr DDC)
|
||||||
DDC->vendor.prod_id == 0x2a00)
|
DDC->vendor.prod_id == 0x2a00)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
|
/* Bug #28414: HP Compaq NC8430 LP154W01-TLA8 */
|
||||||
|
if (memcmp (DDC->vendor.name, "LPL", 4) == 0 &&
|
||||||
|
DDC->vendor.prod_id == 5750)
|
||||||
|
return TRUE;
|
||||||
|
|
||||||
/* Bug #21750: Samsung Syncmaster 2333HD */
|
/* Bug #21750: Samsung Syncmaster 2333HD */
|
||||||
if (memcmp (DDC->vendor.name, "SAM", 4) == 0 &&
|
if (memcmp (DDC->vendor.name, "SAM", 4) == 0 &&
|
||||||
DDC->vendor.prod_id == 1157)
|
DDC->vendor.prod_id == 1157)
|
||||||
|
|
Loading…
Reference in New Issue