aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-s3c.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <krzk@kernel.org>2017-06-16 21:28:02 +0200
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>2017-06-24 22:52:32 +0200
commit8768e7b3e3677fb51bf3ed5ceef174f40be4c287 (patch)
tree61ed3d3724b6c792cd1050d58782465a1c396ada /drivers/rtc/rtc-s3c.c
parentrtc: mxc: remove unused variable (diff)
downloadlinux-dev-8768e7b3e3677fb51bf3ed5ceef174f40be4c287.tar.xz
linux-dev-8768e7b3e3677fb51bf3ed5ceef174f40be4c287.zip
rtc: s3c: Jump to central exit point on getting src clock error
In other error paths in probe, centralized exit point was used so make this consistent. Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to '')
-rw-r--r--drivers/rtc/rtc-s3c.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-s3c.c b/drivers/rtc/rtc-s3c.c
index d44fb34df8fe..c5aa7a35d07f 100644
--- a/drivers/rtc/rtc-s3c.c
+++ b/drivers/rtc/rtc-s3c.c
@@ -510,8 +510,7 @@ static int s3c_rtc_probe(struct platform_device *pdev)
else
dev_dbg(&pdev->dev,
"probe deferred due to missing rtc src clk\n");
- clk_disable_unprepare(info->rtc_clk);
- return ret;
+ goto err_src_clk;
}
clk_prepare_enable(info->rtc_src_clk);
}
@@ -575,6 +574,7 @@ static int s3c_rtc_probe(struct platform_device *pdev)
if (info->data->needs_src_clk)
clk_disable_unprepare(info->rtc_src_clk);
+err_src_clk:
clk_disable_unprepare(info->rtc_clk);
return ret;