aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoonyoung Shim <[email protected]>2015-08-11 11:28:20 +0000
committerAlexandre Belloni <[email protected]>2015-09-05 11:19:13 +0000
commit27b15e31dbc5f4d7fc93e6acaa898cbfd1cf74ea (patch)
tree4bf5ed57d23f3df7c1598a632ba35ec6f7030091
parentrtc: s3c: add missing clk control (diff)
downloadkernel-27b15e31dbc5f4d7fc93e6acaa898cbfd1cf74ea.tar.gz
kernel-27b15e31dbc5f4d7fc93e6acaa898cbfd1cf74ea.zip
rtc: s3c: remove unnecessary NULL assignment
It's unnecessary the code that assigns info->rtc_clk to NULL in s3c_rtc_remove. Signed-off-by: Joonyoung Shim <[email protected]> Reviewed-by: Krzysztof Kozlowski <[email protected]> Signed-off-by: Alexandre Belloni <[email protected]>
-rw-r--r--drivers/rtc/rtc-s3c.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-s3c.c b/drivers/rtc/rtc-s3c.c
index 3ee961529b5b..7cc8f73a3fe8 100644
--- a/drivers/rtc/rtc-s3c.c
+++ b/drivers/rtc/rtc-s3c.c
@@ -425,7 +425,6 @@ static int s3c_rtc_remove(struct platform_device *pdev)
if (info->data->needs_src_clk)
clk_unprepare(info->rtc_src_clk);
clk_unprepare(info->rtc_clk);
- info->rtc_clk = NULL;
return 0;
}