Limit modes to 165Mhz on CH7009, according to spec.
This commit is contained in:
parent
23114fbcca
commit
0305298405
|
|
@ -157,6 +157,9 @@ ch7xxx_init(I2CDevPtr d)
|
|||
static ModeStatus
|
||||
ch7xxx_mode_valid(I2CDevPtr d, DisplayModePtr mode)
|
||||
{
|
||||
if (mode->Clock > 165000)
|
||||
return MODE_CLOCK_HIGH;
|
||||
|
||||
return MODE_OK;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue