diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-07-03 18:06:54 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 19:07:53 -0400 |
commit | 013f91e7bd98d6adb3b84763e2ab8ff86e64445f (patch) | |
tree | e83d300ebc4e85b00928e05bf99dd62e92f2cbd0 /drivers/rtc | |
parent | ffeb40515971c9860ff671bb074689db15e18831 (diff) |
drivers/rtc/rtc-ds1302.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>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-ds1302.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-ds1302.c b/drivers/rtc/rtc-ds1302.c index 1f8ee639757b..7533b723082d 100644 --- a/drivers/rtc/rtc-ds1302.c +++ b/drivers/rtc/rtc-ds1302.c | |||
@@ -234,17 +234,11 @@ static int __init ds1302_rtc_probe(struct platform_device *pdev) | |||
234 | return 0; | 234 | return 0; |
235 | } | 235 | } |
236 | 236 | ||
237 | static int __exit ds1302_rtc_remove(struct platform_device *pdev) | ||
238 | { | ||
239 | return 0; | ||
240 | } | ||
241 | |||
242 | static struct platform_driver ds1302_platform_driver = { | 237 | static struct platform_driver ds1302_platform_driver = { |
243 | .driver = { | 238 | .driver = { |
244 | .name = DRV_NAME, | 239 | .name = DRV_NAME, |
245 | .owner = THIS_MODULE, | 240 | .owner = THIS_MODULE, |
246 | }, | 241 | }, |
247 | .remove = __exit_p(ds1302_rtc_remove), | ||
248 | }; | 242 | }; |
249 | 243 | ||
250 | module_platform_driver_probe(ds1302_platform_driver, ds1302_rtc_probe); | 244 | module_platform_driver_probe(ds1302_platform_driver, ds1302_rtc_probe); |