diff options
author | Alim Akhtar <alim.akhtar@samsung.com> | 2016-07-05 05:58:52 -0400 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2016-07-19 11:48:04 -0400 |
commit | 41a193c7615284cfa3ff3227e13c241f823b13d7 (patch) | |
tree | 4f42ee065fa26ef08377efeccb16734188cf0e8a /drivers/rtc | |
parent | d8cac8d93e17d7531d154d94ca9f9e597fe58cad (diff) |
rtc: s3c: Remove unnecessary call to disable already disabled clock
At the end of s3c_rtc_probe(), s3c_rtc_disable_clk() being called with rtc
clock already disabled (by s3c_rtc_gettime()), which looks extra and
unnecessary call. Lets clean it up.
Signed-off-by: Alim Akhtar <alim.akhtar@samsung.com>
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Reviewed-by: Pankaj Dubey <pankaj.dubey@samsung.com>
Tested-by: Pankaj Dubey <pankaj.dubey@samsung.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-s3c.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-s3c.c b/drivers/rtc/rtc-s3c.c index 6d25e373e246..945d84fb1aa6 100644 --- a/drivers/rtc/rtc-s3c.c +++ b/drivers/rtc/rtc-s3c.c | |||
@@ -565,8 +565,6 @@ static int s3c_rtc_probe(struct platform_device *pdev) | |||
565 | 565 | ||
566 | s3c_rtc_setfreq(info, 1); | 566 | s3c_rtc_setfreq(info, 1); |
567 | 567 | ||
568 | s3c_rtc_disable_clk(info); | ||
569 | |||
570 | return 0; | 568 | return 0; |
571 | 569 | ||
572 | err_nortc: | 570 | err_nortc: |