aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-07-03 18:07:38 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-07-03 19:07:58 -0400
commit75a6cef3c6d2fe7b67e6860baa0a2c9c61058adf (patch)
tree29cac82a83527e6d4b337f12700eb12d82915caa /drivers/rtc
parentc281735c52623e46cdef4b7cc74e81d117e944da (diff)
drivers/rtc/rtc-rs5c348.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: Atsushi Nemoto <anemo@mba.ocn.ne.jp> 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-rs5c348.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-rs5c348.c b/drivers/rtc/rtc-rs5c348.c
index 2c37df3586c7..f7a90a116a39 100644
--- a/drivers/rtc/rtc-rs5c348.c
+++ b/drivers/rtc/rtc-rs5c348.c
@@ -218,18 +218,12 @@ static int rs5c348_probe(struct spi_device *spi)
218 return ret; 218 return ret;
219} 219}
220 220
221static int rs5c348_remove(struct spi_device *spi)
222{
223 return 0;
224}
225
226static struct spi_driver rs5c348_driver = { 221static struct spi_driver rs5c348_driver = {
227 .driver = { 222 .driver = {
228 .name = "rtc-rs5c348", 223 .name = "rtc-rs5c348",
229 .owner = THIS_MODULE, 224 .owner = THIS_MODULE,
230 }, 225 },
231 .probe = rs5c348_probe, 226 .probe = rs5c348_probe,
232 .remove = rs5c348_remove,
233}; 227};
234 228
235module_spi_driver(rs5c348_driver); 229module_spi_driver(rs5c348_driver);