Fix sync polarity on Samsung SyncMaster 205BW monitor.

need to use standard VESA sync polarity instead of the
EDID provided -hsync -vsync values.
This commit is contained in:
Daniel Ciocea 2007-06-08 18:12:21 -07:00 committed by Keith Packard
parent 9c47b86bd9
commit c079cce9d8

View File

@ -71,6 +71,10 @@ static Bool quirk_dt_sync_hm_vp (int scrnIndex, xf86MonPtr DDC)
if (memcmp (DDC->vendor.name, "VSC", 4) == 0 && if (memcmp (DDC->vendor.name, "VSC", 4) == 0 &&
DDC->vendor.prod_id == 58653) DDC->vendor.prod_id == 58653)
return TRUE; return TRUE;
/* Samsung SyncMaster 205BW */
if (memcmp (DDC->vendor.name, "SAM", 4) == 0 &&
DDC->vendor.prod_id == 541)
return TRUE;
return FALSE; return FALSE;
} }