Commit 27b15e31 authored by Joonyoung Shim's avatar Joonyoung Shim Committed by Alexandre Belloni

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: default avatarJoonyoung Shim <jy0922.shim@samsung.com>
Reviewed-by: default avatarKrzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@free-electrons.com>
parent 7f23a936
...@@ -425,7 +425,6 @@ static int s3c_rtc_remove(struct platform_device *pdev) ...@@ -425,7 +425,6 @@ static int s3c_rtc_remove(struct platform_device *pdev)
if (info->data->needs_src_clk) if (info->data->needs_src_clk)
clk_unprepare(info->rtc_src_clk); clk_unprepare(info->rtc_src_clk);
clk_unprepare(info->rtc_clk); clk_unprepare(info->rtc_clk);
info->rtc_clk = NULL;
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment