diff options
Diffstat (limited to 'drivers/rtc/rtc-tegra.c')
-rw-r--r-- | drivers/rtc/rtc-tegra.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/rtc/rtc-tegra.c b/drivers/rtc/rtc-tegra.c index c006025cecc8..5ba2f756a524 100644 --- a/drivers/rtc/rtc-tegra.c +++ b/drivers/rtc/rtc-tegra.c | |||
@@ -303,7 +303,7 @@ static struct rtc_class_ops tegra_rtc_ops = { | |||
303 | .alarm_irq_enable = tegra_rtc_alarm_irq_enable, | 303 | .alarm_irq_enable = tegra_rtc_alarm_irq_enable, |
304 | }; | 304 | }; |
305 | 305 | ||
306 | static int __devinit tegra_rtc_probe(struct platform_device *pdev) | 306 | static int tegra_rtc_probe(struct platform_device *pdev) |
307 | { | 307 | { |
308 | struct tegra_rtc_info *info; | 308 | struct tegra_rtc_info *info; |
309 | struct resource *res; | 309 | struct resource *res; |
@@ -375,7 +375,7 @@ err_dev_unreg: | |||
375 | return ret; | 375 | return ret; |
376 | } | 376 | } |
377 | 377 | ||
378 | static int __devexit tegra_rtc_remove(struct platform_device *pdev) | 378 | static int tegra_rtc_remove(struct platform_device *pdev) |
379 | { | 379 | { |
380 | struct tegra_rtc_info *info = platform_get_drvdata(pdev); | 380 | struct tegra_rtc_info *info = platform_get_drvdata(pdev); |
381 | 381 | ||
@@ -435,7 +435,7 @@ static void tegra_rtc_shutdown(struct platform_device *pdev) | |||
435 | 435 | ||
436 | MODULE_ALIAS("platform:tegra_rtc"); | 436 | MODULE_ALIAS("platform:tegra_rtc"); |
437 | static struct platform_driver tegra_rtc_driver = { | 437 | static struct platform_driver tegra_rtc_driver = { |
438 | .remove = __devexit_p(tegra_rtc_remove), | 438 | .remove = tegra_rtc_remove, |
439 | .shutdown = tegra_rtc_shutdown, | 439 | .shutdown = tegra_rtc_shutdown, |
440 | .driver = { | 440 | .driver = { |
441 | .name = "tegra_rtc", | 441 | .name = "tegra_rtc", |