Skip to content

Commit

Permalink
Syncmaster 226 monitor needs 60Hz refresh (#10545).
Browse files Browse the repository at this point in the history
I've managed to solve my own bug (#10545) by applying the following
patch to the xserver.

Please apply.

<Conspiracy mode on>
This monitor is "Vista Certified". I wonder if this is a pure coincidence...
<Conspiracy mode off>

With kind regards
Erik Andrén
  • Loading branch information
ErikAndren authored and Keith Packard committed Apr 18, 2007
1 parent a3d73ba commit a63704f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions hw/xfree86/modes/xf86EdidModes.c
Expand Up @@ -86,6 +86,11 @@ static Bool quirk_prefer_large_60 (int scrnIndex, xf86MonPtr DDC)
if (memcmp (DDC->vendor.name, "ACR", 4) == 0 &&
DDC->vendor.prod_id == 44358)
return TRUE;

/* Samsung SyncMaster 226BW */
if (memcmp (DDC->vendor.name, "SAM", 4) == 0 &&
DDC->vendor.prod_id == 638)
return TRUE;

return FALSE;
}
Expand Down

0 comments on commit a63704f

Please sign in to comment.