aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/rtc/rtc-ab3100.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-ab3100.c b/drivers/rtc/rtc-ab3100.c
index 572208d67688..ff435343ba9f 100644
--- a/drivers/rtc/rtc-ab3100.c
+++ b/drivers/rtc/rtc-ab3100.c
@@ -240,17 +240,11 @@ static int __init ab3100_rtc_probe(struct platform_device *pdev)
240 return 0; 240 return 0;
241} 241}
242 242
243static int __exit ab3100_rtc_remove(struct platform_device *pdev)
244{
245 return 0;
246}
247
248static struct platform_driver ab3100_rtc_driver = { 243static struct platform_driver ab3100_rtc_driver = {
249 .driver = { 244 .driver = {
250 .name = "ab3100-rtc", 245 .name = "ab3100-rtc",
251 .owner = THIS_MODULE, 246 .owner = THIS_MODULE,
252 }, 247 },
253 .remove = __exit_p(ab3100_rtc_remove),
254}; 248};
255 249
256module_platform_driver_probe(ab3100_rtc_driver, ab3100_rtc_probe); 250module_platform_driver_probe(ab3100_rtc_driver, ab3100_rtc_probe);