diff options
Diffstat (limited to 'drivers/rtc/rtc-pcf50633.c')
-rw-r--r-- | drivers/rtc/rtc-pcf50633.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/rtc/rtc-pcf50633.c b/drivers/rtc/rtc-pcf50633.c index a20202f9ee57..e9f3135d305f 100644 --- a/drivers/rtc/rtc-pcf50633.c +++ b/drivers/rtc/rtc-pcf50633.c | |||
@@ -248,7 +248,7 @@ static void pcf50633_rtc_irq(int irq, void *data) | |||
248 | rtc->alarm_pending = 1; | 248 | rtc->alarm_pending = 1; |
249 | } | 249 | } |
250 | 250 | ||
251 | static int __devinit pcf50633_rtc_probe(struct platform_device *pdev) | 251 | static int pcf50633_rtc_probe(struct platform_device *pdev) |
252 | { | 252 | { |
253 | struct pcf50633_rtc *rtc; | 253 | struct pcf50633_rtc *rtc; |
254 | 254 | ||
@@ -272,7 +272,7 @@ static int __devinit pcf50633_rtc_probe(struct platform_device *pdev) | |||
272 | return 0; | 272 | return 0; |
273 | } | 273 | } |
274 | 274 | ||
275 | static int __devexit pcf50633_rtc_remove(struct platform_device *pdev) | 275 | static int pcf50633_rtc_remove(struct platform_device *pdev) |
276 | { | 276 | { |
277 | struct pcf50633_rtc *rtc; | 277 | struct pcf50633_rtc *rtc; |
278 | 278 | ||
@@ -291,7 +291,7 @@ static struct platform_driver pcf50633_rtc_driver = { | |||
291 | .name = "pcf50633-rtc", | 291 | .name = "pcf50633-rtc", |
292 | }, | 292 | }, |
293 | .probe = pcf50633_rtc_probe, | 293 | .probe = pcf50633_rtc_probe, |
294 | .remove = __devexit_p(pcf50633_rtc_remove), | 294 | .remove = pcf50633_rtc_remove, |
295 | }; | 295 | }; |
296 | 296 | ||
297 | module_platform_driver(pcf50633_rtc_driver); | 297 | module_platform_driver(pcf50633_rtc_driver); |