diff options
author | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-10-25 21:23:09 -0400 |
---|---|---|
committer | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-10-25 21:23:09 -0400 |
commit | 49cf7cb3db36ce7734f7e314a040a240191d6477 (patch) | |
tree | 0e70b451c9d5656ef9d384502a9f283e3c7b34a8 | |
parent | 70bbc0cfe699588f8ae4123efca0e1baffc91000 (diff) |
RADEON: Fix IgnoreEDID option
-rw-r--r-- | src/radeon_output.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c index 4f39493..9cfc2c4 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -344,7 +344,8 @@ RADEONDisplayDDCConnected(ScrnInfoPtr pScrn, xf86OutputPtr output) ~(RADEON_GPIO_EN_0 | RADEON_GPIO_EN_1)); if (MonInfo) { - xf86OutputSetEDID (output, MonInfo); + if (!xf86ReturnOptValBool(info->Options, OPTION_IGNORE_EDID, FALSE)) + xf86OutputSetEDID(output, MonInfo); if ((info->IsAtomBios && radeon_output->ConnectorType == CONNECTOR_LVDS_ATOM) || (!info->IsAtomBios && radeon_output->ConnectorType == CONNECTOR_PROPRIETARY)) { MonType = MT_LCD; |