diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-07-03 18:06:53 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 19:07:53 -0400 |
commit | ffeb40515971c9860ff671bb074689db15e18831 (patch) | |
tree | c12c0e9ca7e7419e6ff52b898d2ba4855447b07f | |
parent | 7f9833cdf642ade8a99d7979a7128b9288234d95 (diff) |
drivers/rtc/rtc-lp8788.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>
Acked-by: Milo Kim <milo.kim@ti.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-lp8788.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-lp8788.c b/drivers/rtc/rtc-lp8788.c index 76a82dc9e502..4ff6c73253b3 100644 --- a/drivers/rtc/rtc-lp8788.c +++ b/drivers/rtc/rtc-lp8788.c | |||
@@ -312,14 +312,8 @@ static int lp8788_rtc_probe(struct platform_device *pdev) | |||
312 | return 0; | 312 | return 0; |
313 | } | 313 | } |
314 | 314 | ||
315 | static int lp8788_rtc_remove(struct platform_device *pdev) | ||
316 | { | ||
317 | return 0; | ||
318 | } | ||
319 | |||
320 | static struct platform_driver lp8788_rtc_driver = { | 315 | static struct platform_driver lp8788_rtc_driver = { |
321 | .probe = lp8788_rtc_probe, | 316 | .probe = lp8788_rtc_probe, |
322 | .remove = lp8788_rtc_remove, | ||
323 | .driver = { | 317 | .driver = { |
324 | .name = LP8788_DEV_RTC, | 318 | .name = LP8788_DEV_RTC, |
325 | .owner = THIS_MODULE, | 319 | .owner = THIS_MODULE, |