summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/rtc/rtc-fm3130.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-fm3130.c b/drivers/rtc/rtc-fm3130.c
index 8f053daf0f0c..83c3b3029fa7 100644
--- a/drivers/rtc/rtc-fm3130.c
+++ b/drivers/rtc/rtc-fm3130.c
@@ -520,18 +520,12 @@ exit_free:
520 return err; 520 return err;
521} 521}
522 522
523static int fm3130_remove(struct i2c_client *client)
524{
525 return 0;
526}
527
528static struct i2c_driver fm3130_driver = { 523static struct i2c_driver fm3130_driver = {
529 .driver = { 524 .driver = {
530 .name = "rtc-fm3130", 525 .name = "rtc-fm3130",
531 .owner = THIS_MODULE, 526 .owner = THIS_MODULE,
532 }, 527 },
533 .probe = fm3130_probe, 528 .probe = fm3130_probe,
534 .remove = fm3130_remove,
535 .id_table = fm3130_id, 529 .id_table = fm3130_id,
536}; 530};
537 531