edid: Add quirk for Sony Vaio Pro 13

The detailed timings are for a 15.6" display when max image size
correctly reports 13.3".

Signed-off-by: Arun Raghavan <arun@accosted.net>
Reviewed-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
Arun Raghavan 2014-01-06 20:29:50 +05:30 committed by Keith Packard
parent bf83843b92
commit 83e38eb73f

View File

@ -162,6 +162,11 @@ quirk_detailed_use_maximum_size(int scrnIndex, xf86MonPtr DDC)
DDC->vendor.prod_id == 0x7f01)
return TRUE;
/* Sony Vaio Pro 13 */
if (memcmp(DDC->vendor.name, "MEI", 4) == 0 &&
DDC->vendor.prod_id == 0x96a2)
return TRUE;
return FALSE;
}