Add quirk for Acer AL1706 monitor to force 60hz refresh.

This Acer monitor reports support for 75hz refresh via EDID, and yet when
that rate is delivered, the monitor does not sync and reports out of range.
Use the existing 60hz quirk for this monitor.
(cherry picked from commit 1328a288e9)
This commit is contained in:
Keith Packard 2007-04-13 15:04:29 -03:00
parent eba81a0a01
commit cc4eb1c7ea

View File

@ -82,6 +82,11 @@ static Bool quirk_prefer_large_60 (int scrnIndex, xf86MonPtr DDC)
DDC->vendor.prod_id == 1516) DDC->vendor.prod_id == 1516)
return TRUE; return TRUE;
/* Acer AL1706 */
if (memcmp (DDC->vendor.name, "ACR", 4) == 0 &&
DDC->vendor.prod_id == 44358)
return TRUE;
return FALSE; return FALSE;
} }