[PATCH] edid: Add quirk for Sony Vaio Pro 13
Arun Raghavan
arun at accosted.net
Mon Jan 6 06:59:50 PST 2014
The detailed timings are for a 15.6" display when max image size
correctly reports 13.3".
Signed-off-by: Arun Raghavan <arun at accosted.net>
---
hw/xfree86/modes/xf86EdidModes.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/hw/xfree86/modes/xf86EdidModes.c b/hw/xfree86/modes/xf86EdidModes.c
index 4ee862d..57e9f74 100644
--- a/hw/xfree86/modes/xf86EdidModes.c
+++ b/hw/xfree86/modes/xf86EdidModes.c
@@ -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;
}
--
1.8.4.2
More information about the xorg-devel
mailing list