summaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-pcf2127.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/rtc/rtc-pcf2127.c')
-rw-r--r--drivers/rtc/rtc-pcf2127.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-pcf2127.c b/drivers/rtc/rtc-pcf2127.c
index 205b9f7da1b8..1ee514a3972c 100644
--- a/drivers/rtc/rtc-pcf2127.c
+++ b/drivers/rtc/rtc-pcf2127.c
@@ -203,11 +203,6 @@ static int pcf2127_probe(struct i2c_client *client,
203 return 0; 203 return 0;
204} 204}
205 205
206static int pcf2127_remove(struct i2c_client *client)
207{
208 return 0;
209}
210
211static const struct i2c_device_id pcf2127_id[] = { 206static const struct i2c_device_id pcf2127_id[] = {
212 { "pcf2127", 0 }, 207 { "pcf2127", 0 },
213 { } 208 { }
@@ -229,7 +224,6 @@ static struct i2c_driver pcf2127_driver = {
229 .of_match_table = of_match_ptr(pcf2127_of_match), 224 .of_match_table = of_match_ptr(pcf2127_of_match),
230 }, 225 },
231 .probe = pcf2127_probe, 226 .probe = pcf2127_probe,
232 .remove = pcf2127_remove,
233 .id_table = pcf2127_id, 227 .id_table = pcf2127_id,
234}; 228};
235 229