diff options
author | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2013-10-28 18:49:28 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-11-11 08:32:58 -0500 |
commit | d00affb1c6bfa83e216931604f697a38745b4181 (patch) | |
tree | 9a9940b48eb54e8ae47aa8bb6a71f7434baa9fe3 | |
parent | 8623ec220b9c9d873ef82d41c9adbac7eec53174 (diff) |
fbdev: shmobile-hdmi: Convert to clk_prepare/unprepare
Turn clk_enable() and clk_disable() calls into clk_prepare_enable() and
clk_disable_unprepare() to get ready for the migration to the common
clock framework.
Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Cc: linux-fbdev@vger.kernel.org
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r-- | drivers/video/sh_mobile_hdmi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/sh_mobile_hdmi.c b/drivers/video/sh_mobile_hdmi.c index 5e2845b9f3a8..9a33ee0413fb 100644 --- a/drivers/video/sh_mobile_hdmi.c +++ b/drivers/video/sh_mobile_hdmi.c | |||
@@ -1326,7 +1326,7 @@ static int __init sh_hdmi_probe(struct platform_device *pdev) | |||
1326 | goto erate; | 1326 | goto erate; |
1327 | } | 1327 | } |
1328 | 1328 | ||
1329 | ret = clk_enable(hdmi->hdmi_clk); | 1329 | ret = clk_prepare_enable(hdmi->hdmi_clk); |
1330 | if (ret < 0) { | 1330 | if (ret < 0) { |
1331 | dev_err(hdmi->dev, "Cannot enable clock: %d\n", ret); | 1331 | dev_err(hdmi->dev, "Cannot enable clock: %d\n", ret); |
1332 | goto erate; | 1332 | goto erate; |
@@ -1404,7 +1404,7 @@ emap_htop1: | |||
1404 | emap: | 1404 | emap: |
1405 | release_mem_region(res->start, resource_size(res)); | 1405 | release_mem_region(res->start, resource_size(res)); |
1406 | ereqreg: | 1406 | ereqreg: |
1407 | clk_disable(hdmi->hdmi_clk); | 1407 | clk_disable_unprepare(hdmi->hdmi_clk); |
1408 | erate: | 1408 | erate: |
1409 | clk_put(hdmi->hdmi_clk); | 1409 | clk_put(hdmi->hdmi_clk); |
1410 | 1410 | ||
@@ -1425,7 +1425,7 @@ static int __exit sh_hdmi_remove(struct platform_device *pdev) | |||
1425 | cancel_delayed_work_sync(&hdmi->edid_work); | 1425 | cancel_delayed_work_sync(&hdmi->edid_work); |
1426 | pm_runtime_put(&pdev->dev); | 1426 | pm_runtime_put(&pdev->dev); |
1427 | pm_runtime_disable(&pdev->dev); | 1427 | pm_runtime_disable(&pdev->dev); |
1428 | clk_disable(hdmi->hdmi_clk); | 1428 | clk_disable_unprepare(hdmi->hdmi_clk); |
1429 | clk_put(hdmi->hdmi_clk); | 1429 | clk_put(hdmi->hdmi_clk); |
1430 | if (hdmi->htop1) | 1430 | if (hdmi->htop1) |
1431 | iounmap(hdmi->htop1); | 1431 | iounmap(hdmi->htop1); |