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.
This commit is contained in:
Keith Packard 2007-04-13 15:04:29 -03:00
parent efcec7dbd3
commit 1328a288e9

View File

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