diff mbox series

[-next] media: platform: change clk_disable to clk_disable_unprepare

Message ID 20220328114730.3944817-1-bobo.shaobowang@huawei.com (mailing list archive)
State Accepted
Commit 9fadab72a6916c7507d7fedcd644859eef995078
Headers show
Series [-next] media: platform: change clk_disable to clk_disable_unprepare | expand

Commit Message

Wangshaobo (bobo) March 28, 2022, 11:47 a.m. UTC
Corresponding API pairs with clk_prepare_enable in fimc_is_enable_clocks()
is clk_disable_unprepare, fix this by changing clk_disable to
clk_disable_unprepare.

Fixes: 9a761e436843 ("[media] exynos4-is: Add Exynos4x12 FIMC-IS driver")
Signed-off-by: Wang ShaoBo <bobo.shaobowang@huawei.com>
---
 drivers/media/platform/samsung/exynos4-is/fimc-is.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/media/platform/samsung/exynos4-is/fimc-is.c b/drivers/media/platform/samsung/exynos4-is/fimc-is.c
index e55e411038f4..8e88b0f6662d 100644
--- a/drivers/media/platform/samsung/exynos4-is/fimc-is.c
+++ b/drivers/media/platform/samsung/exynos4-is/fimc-is.c
@@ -140,7 +140,7 @@  static int fimc_is_enable_clocks(struct fimc_is *is)
 			dev_err(&is->pdev->dev, "clock %s enable failed\n",
 				fimc_is_clocks[i]);
 			for (--i; i >= 0; i--)
-				clk_disable(is->clocks[i]);
+				clk_disable_unprepare(is->clocks[i]);
 			return ret;
 		}
 		pr_debug("enabled clock: %s\n", fimc_is_clocks[i]);