diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-02-18 13:27:15 -0500 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-02-18 13:27:15 -0500 |
commit | 97b8482dba4e99088b59d3ab1396be98a70e823e (patch) | |
tree | f0b202979bdc8980f005aaf0913287a1c058ff36 /src/radeon_output.c | |
parent | 7d22b1799b34010d34c3600d6cb02ffe839a0780 (diff) |
Set default RMX type to FULL on LVDS
Diffstat (limited to 'src/radeon_output.c')
-rw-r--r-- | src/radeon_output.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c index 113bf67f..352519f3 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -1848,7 +1848,10 @@ void RADEONInitConnector(xf86OutputPtr output) RADEONInfoPtr info = RADEONPTR(pScrn); RADEONOutputPrivatePtr radeon_output = output->driver_private; - radeon_output->rmx_type = RMX_OFF; + if (radeon_output->devices & (ATOM_DEVICE_LCD_SUPPORT)) + radeon_output->rmx_type = RMX_FULL; + else + radeon_output->rmx_type = RMX_OFF; if (!IS_AVIVO_VARIANT) { if (radeon_output->devices & (ATOM_DEVICE_CRT2_SUPPORT)) { |