diff options
author | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-12-10 13:53:15 -0500 |
---|---|---|
committer | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-12-10 13:53:15 -0500 |
commit | 9b125312ab6edc585e4f5931a6a6de81e13b6acc (patch) | |
tree | 1140cbff47bced884ba6f4e982d37c1f5d9959d9 | |
parent | 3a161e1b5d80361e318ced8da5c19e797749d693 (diff) |
RADEON: only update crtc values when RMX is active
-rw-r--r-- | src/radeon_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c index 11a2a8a1..d041d547 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -800,7 +800,7 @@ radeon_mode_fixup(xf86OutputPtr output, DisplayModePtr mode, } /* update timing for LVDS and DFP if RMX is active */ - if ((radeon_output->MonType == MT_LCD) || (radeon_output->Flags & RADEON_USE_RMX)) { + if (radeon_output->Flags & RADEON_USE_RMX) { /* set to the panel's native mode */ adjusted_mode->HTotal = radeon_output->PanelXRes + radeon_output->HBlank; adjusted_mode->HSyncStart = radeon_output->PanelXRes + radeon_output->HOverPlus; |