diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-07-03 18:06:56 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 19:07:54 -0400 |
commit | 8c0a4273306d2bf95d2448ff457847d7c59bec52 (patch) | |
tree | e4b8d5130eb8efccb35a36f1cd78a4fa5a90dc96 | |
parent | 67d326fa716f1521d435f18a4adae83a767cde69 (diff) |
drivers/rtc/rtc-da9052.c: remove empty function
After the switch to devm_ functions and the removal of
rtc_device_unregister(), the 'remove' function does not do anything.
Delete it.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: David Dajun Chen <dchen@diasemi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/rtc/rtc-da9052.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-da9052.c b/drivers/rtc/rtc-da9052.c index a61ab7fa8a66..2f7fdd77a6f0 100644 --- a/drivers/rtc/rtc-da9052.c +++ b/drivers/rtc/rtc-da9052.c | |||
@@ -255,14 +255,8 @@ static int da9052_rtc_probe(struct platform_device *pdev) | |||
255 | return 0; | 255 | return 0; |
256 | } | 256 | } |
257 | 257 | ||
258 | static int da9052_rtc_remove(struct platform_device *pdev) | ||
259 | { | ||
260 | return 0; | ||
261 | } | ||
262 | |||
263 | static struct platform_driver da9052_rtc_driver = { | 258 | static struct platform_driver da9052_rtc_driver = { |
264 | .probe = da9052_rtc_probe, | 259 | .probe = da9052_rtc_probe, |
265 | .remove = da9052_rtc_remove, | ||
266 | .driver = { | 260 | .driver = { |
267 | .name = "da9052-rtc", | 261 | .name = "da9052-rtc", |
268 | .owner = THIS_MODULE, | 262 | .owner = THIS_MODULE, |