summaryrefslogtreecommitdiff
path: root/drivers/video/modedb.c
diff options
context:
space:
mode:
authorJon Mayo <jmayo@nvidia.com>2013-01-11 19:29:22 -0800
committerDan Willemsen <dwillemsen@nvidia.com>2013-09-14 12:56:59 -0700
commit958439aed9feedd873056f60c093c45ceeb38ad1 (patch)
treeeb1ba6375f51374eab7cc078b56fd08a6779632f /drivers/video/modedb.c
parent31d6a0635dac17ae1142fe9e4a7f89c34b97e604 (diff)
video: fbmon: correct HDMI refresh rates
Some of the HDMI 4K modes were marked as 30Hz when they were 24/25Hz. Change-Id: Id84bc05262f14d37cc9f6246f839eb8a99542d5b Signed-off-by: Jon Mayo <jmayo@nvidia.com> Reviewed-on: http://git-master/r/196696 Reviewed-by: Automatic_Commit_Validation_User
Diffstat (limited to 'drivers/video/modedb.c')
-rw-r--r--drivers/video/modedb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/modedb.c b/drivers/video/modedb.c
index 1f2990f721a4..a743eeda4898 100644
--- a/drivers/video/modedb.c
+++ b/drivers/video/modedb.c
@@ -820,7 +820,7 @@ const struct fb_videomode hdmi_ext_modes[HDMI_EXT_MODEDB_SIZE] = {
.flag = FB_FLAG_RATIO_16_9,
.vmode = FB_VMODE_NONINTERLACED},
/* HDMI_VIC 0x02: 3840x2160p @ 25Hz */
- {.refresh = 30, .xres = 3840, .yres = 2160, .pixclock = 3367,
+ {.refresh = 25, .xres = 3840, .yres = 2160, .pixclock = 3367,
.left_margin = 296, .right_margin = 1056,
.upper_margin = 72, .lower_margin = 8,
.hsync_len = 88, .vsync_len = 10,
@@ -828,7 +828,7 @@ const struct fb_videomode hdmi_ext_modes[HDMI_EXT_MODEDB_SIZE] = {
.flag = FB_FLAG_RATIO_16_9,
.vmode = FB_VMODE_NONINTERLACED},
/* HDMI_VIC 0x03: 3840x2160p @ 23.98/24Hz */
- {.refresh = 30, .xres = 3840, .yres = 2160, .pixclock = 3367,
+ {.refresh = 24, .xres = 3840, .yres = 2160, .pixclock = 3367,
.left_margin = 296, .right_margin = 1276,
.upper_margin = 72, .lower_margin = 8,
.hsync_len = 88, .vsync_len = 10,
@@ -836,7 +836,7 @@ const struct fb_videomode hdmi_ext_modes[HDMI_EXT_MODEDB_SIZE] = {
.flag = FB_FLAG_RATIO_16_9,
.vmode = FB_VMODE_NONINTERLACED},
/* HDMI_VIC 0x04: 4096x2160p @ 24Hz */
- {.refresh = 30, .xres = 4096, .yres = 2160, .pixclock = 3367,
+ {.refresh = 24, .xres = 4096, .yres = 2160, .pixclock = 3367,
.left_margin = 296, .right_margin = 1020,
.upper_margin = 72, .lower_margin = 8,
.hsync_len = 88, .vsync_len = 10,