From c079cce9d884ab03f305b3fba4a4e1247c023480 Mon Sep 17 00:00:00 2001 From: Daniel Ciocea Date: Fri, 8 Jun 2007 18:12:21 -0700 Subject: [PATCH] Fix sync polarity on Samsung SyncMaster 205BW monitor. need to use standard VESA sync polarity instead of the EDID provided -hsync -vsync values. --- hw/xfree86/modes/xf86EdidModes.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hw/xfree86/modes/xf86EdidModes.c b/hw/xfree86/modes/xf86EdidModes.c index 46cb6c41e..a9f9ddc9c 100644 --- a/hw/xfree86/modes/xf86EdidModes.c +++ b/hw/xfree86/modes/xf86EdidModes.c @@ -71,7 +71,11 @@ static Bool quirk_dt_sync_hm_vp (int scrnIndex, xf86MonPtr DDC) if (memcmp (DDC->vendor.name, "VSC", 4) == 0 && DDC->vendor.prod_id == 58653) return TRUE; - + /* Samsung SyncMaster 205BW */ + if (memcmp (DDC->vendor.name, "SAM", 4) == 0 && + DDC->vendor.prod_id == 541) + return TRUE; + return FALSE; }