aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2011-08-01 07:54:44 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2011-08-01 07:56:53 -0400
commitdf5d3ed23cf73ee0763a8963003bda9b69d9620f (patch)
tree506c0acb1020480fdd1e275b3c311997be3ed28b /drivers/video
parent9ede365aa6f74428a1f69c21ca1cf21213167576 (diff)
OMAP: DSS2: HDMI: fix hdmi clock name
The HDMI clock (hdmi_clk) is missing in the current OMAP4 HWMOD database. Fix this in the DSS driver by using the old clock name (dss_48mhz_clk). Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/omap2/dss/hdmi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/omap2/dss/hdmi.c b/drivers/video/omap2/dss/hdmi.c
index 635cc002a438..256f27a9064a 100644
--- a/drivers/video/omap2/dss/hdmi.c
+++ b/drivers/video/omap2/dss/hdmi.c
@@ -1698,9 +1698,9 @@ static int hdmi_get_clocks(struct platform_device *pdev)
1698 1698
1699 hdmi.sys_clk = clk; 1699 hdmi.sys_clk = clk;
1700 1700
1701 clk = clk_get(&pdev->dev, "fck"); 1701 clk = clk_get(&pdev->dev, "dss_48mhz_clk");
1702 if (IS_ERR(clk)) { 1702 if (IS_ERR(clk)) {
1703 DSSERR("can't get fck\n"); 1703 DSSERR("can't get hdmi_clk\n");
1704 clk_put(hdmi.sys_clk); 1704 clk_put(hdmi.sys_clk);
1705 return PTR_ERR(clk); 1705 return PTR_ERR(clk);
1706 } 1706 }