diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-07-03 18:07:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 19:07:58 -0400 |
commit | 164b8649186c1746750d063c53b71c42646fe337 (patch) | |
tree | 37d30533642ff4f5eaa91aab3a7fc7dd0be11fe2 /drivers/rtc/rtc-ps3.c | |
parent | 54aa095ffcc52f9e81bc84159f4af223730d3681 (diff) |
drivers/rtc/rtc-ps3.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: Geoff Levand <geoff@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/rtc-ps3.c')
-rw-r--r-- | drivers/rtc/rtc-ps3.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-ps3.c b/drivers/rtc/rtc-ps3.c index 4bb825bb5804..554ada5e9b76 100644 --- a/drivers/rtc/rtc-ps3.c +++ b/drivers/rtc/rtc-ps3.c | |||
@@ -71,17 +71,11 @@ static int __init ps3_rtc_probe(struct platform_device *dev) | |||
71 | return 0; | 71 | return 0; |
72 | } | 72 | } |
73 | 73 | ||
74 | static int __exit ps3_rtc_remove(struct platform_device *dev) | ||
75 | { | ||
76 | return 0; | ||
77 | } | ||
78 | |||
79 | static struct platform_driver ps3_rtc_driver = { | 74 | static struct platform_driver ps3_rtc_driver = { |
80 | .driver = { | 75 | .driver = { |
81 | .name = "rtc-ps3", | 76 | .name = "rtc-ps3", |
82 | .owner = THIS_MODULE, | 77 | .owner = THIS_MODULE, |
83 | }, | 78 | }, |
84 | .remove = __exit_p(ps3_rtc_remove), | ||
85 | }; | 79 | }; |
86 | 80 | ||
87 | module_platform_driver_probe(ps3_rtc_driver, ps3_rtc_probe); | 81 | module_platform_driver_probe(ps3_rtc_driver, ps3_rtc_probe); |