summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2010-03-06 15:43:41 +0100
committerDave Airlie <airlied@redhat.com>2010-07-13 03:02:49 +0200
commitff3f011cd859072b5d6e64c0b968cff9bfdc0b37 (patch)
tree34a77c701187b64ce01a41ef201745ada5c4b86b /drivers
parentLinux 2.6.35-rc5 (diff)
downloadlinux-ff3f011cd859072b5d6e64c0b968cff9bfdc0b37.tar.xz
linux-ff3f011cd859072b5d6e64c0b968cff9bfdc0b37.zip
drm/radeon/kms: fix legacy tv-out pal mode
fixes fdo bug 26915 Signed-off-by: Alex Deucher <alexdeucher@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/radeon/radeon_legacy_tv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_legacy_tv.c b/drivers/gpu/drm/radeon/radeon_legacy_tv.c
index f2ed27c8055b..032040397743 100644
--- a/drivers/gpu/drm/radeon/radeon_legacy_tv.c
+++ b/drivers/gpu/drm/radeon/radeon_legacy_tv.c
@@ -642,8 +642,8 @@ void radeon_legacy_tv_mode_set(struct drm_encoder *encoder,
}
flicker_removal = (tmp + 500) / 1000;
- if (flicker_removal < 2)
- flicker_removal = 2;
+ if (flicker_removal < 3)
+ flicker_removal = 3;
for (i = 0; i < ARRAY_SIZE(SLOPE_limit); ++i) {
if (flicker_removal == SLOPE_limit[i])
break;