aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/omap2/dss/venc_panel.c
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2013-04-10 07:12:14 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2014-03-05 01:33:30 -0500
commitd8d789416aa71253c6532c9adc7469cb947031f6 (patch)
treef918421f7f59ccbe8753572b270d241d9cfccede /drivers/video/omap2/dss/venc_panel.c
parenteba358435b21520a93180ec3021754c0e387b1f7 (diff)
OMAPDSS: convert pixel clock to common videomode style
omapdss has its own video-timings struct, but we want to move the common videomode. The first step is to change the omapdss's pixelclock unit from kHz to Hz. Also, omapdss uses "pixel_clock" field name, whereas the common videomode uses "pixelclock" field name. This patch changes the field name also, as that makes it easy to spot any non-converted pixel_clock uses. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/venc_panel.c')
-rw-r--r--drivers/video/omap2/dss/venc_panel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/omap2/dss/venc_panel.c b/drivers/video/omap2/dss/venc_panel.c
index f7d92c57bd73..af68cd444d7e 100644
--- a/drivers/video/omap2/dss/venc_panel.c
+++ b/drivers/video/omap2/dss/venc_panel.c
@@ -89,7 +89,7 @@ static int venc_panel_probe(struct omap_dss_device *dssdev)
89 const struct omap_video_timings default_timings = { 89 const struct omap_video_timings default_timings = {
90 .x_res = 720, 90 .x_res = 720,
91 .y_res = 574, 91 .y_res = 574,
92 .pixel_clock = 13500, 92 .pixelclock = 13500000,
93 .hsw = 64, 93 .hsw = 64,
94 .hfp = 12, 94 .hfp = 12,
95 .hbp = 68, 95 .hbp = 68,