diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2008-10-06 15:07:31 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2008-10-06 15:07:31 -0400 |
commit | a5c5ce96279d01eb519bfb92b94c06a58acb7f07 (patch) | |
tree | 3864acfc0b5979f7b55b97a7579b02f428b28bbf /src/radeon_output.c | |
parent | f9826a5694b7adb6920eb5bdf45d840d8fb14d53 (diff) |
Refactor atom LCD/DFP output setup
Simplify the code, properly handle dithering, coherent mode, encoding, etc.
Should fix bug 17897.
Diffstat (limited to 'src/radeon_output.c')
-rw-r--r-- | src/radeon_output.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c index 4947478f..3416edfe 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -1146,8 +1146,7 @@ radeon_create_resources(xf86OutputPtr output) } } - if (IS_DCE3_VARIANT && - (OUTPUT_IS_DVI || (radeon_output->type == OUTPUT_HDMI))) { + if (OUTPUT_IS_DVI || (radeon_output->type == OUTPUT_HDMI)) { coherent_mode_atom = MAKE_ATOM("coherent_mode"); range[0] = 0; /* off */ |