diff options
Diffstat (limited to 'drivers/rtc/rtc-vr41xx.c')
-rw-r--r-- | drivers/rtc/rtc-vr41xx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/rtc/rtc-vr41xx.c b/drivers/rtc/rtc-vr41xx.c index 5f60a7c6a155..6c3774cf5a24 100644 --- a/drivers/rtc/rtc-vr41xx.c +++ b/drivers/rtc/rtc-vr41xx.c | |||
@@ -280,7 +280,7 @@ static const struct rtc_class_ops vr41xx_rtc_ops = { | |||
280 | .set_alarm = vr41xx_rtc_set_alarm, | 280 | .set_alarm = vr41xx_rtc_set_alarm, |
281 | }; | 281 | }; |
282 | 282 | ||
283 | static int __devinit rtc_probe(struct platform_device *pdev) | 283 | static int rtc_probe(struct platform_device *pdev) |
284 | { | 284 | { |
285 | struct resource *res; | 285 | struct resource *res; |
286 | struct rtc_device *rtc; | 286 | struct rtc_device *rtc; |
@@ -373,7 +373,7 @@ err_rtc1_iounmap: | |||
373 | return retval; | 373 | return retval; |
374 | } | 374 | } |
375 | 375 | ||
376 | static int __devexit rtc_remove(struct platform_device *pdev) | 376 | static int rtc_remove(struct platform_device *pdev) |
377 | { | 377 | { |
378 | struct rtc_device *rtc; | 378 | struct rtc_device *rtc; |
379 | 379 | ||
@@ -398,7 +398,7 @@ MODULE_ALIAS("platform:RTC"); | |||
398 | 398 | ||
399 | static struct platform_driver rtc_platform_driver = { | 399 | static struct platform_driver rtc_platform_driver = { |
400 | .probe = rtc_probe, | 400 | .probe = rtc_probe, |
401 | .remove = __devexit_p(rtc_remove), | 401 | .remove = rtc_remove, |
402 | .driver = { | 402 | .driver = { |
403 | .name = rtc_name, | 403 | .name = rtc_name, |
404 | .owner = THIS_MODULE, | 404 | .owner = THIS_MODULE, |