From 65019a377325ce35844e5e7dbd9179e75ac9d194 Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Wed, 20 Feb 2013 13:15:44 +1100 Subject: [PATCH] rtc-add-rtc-driver-for-tps80031-tps80032-v2-fix remove obsolete __devinit/__devexit Cc: Devendra Naga Cc: Laxman Dewangan Signed-off-by: Andrew Morton --- drivers/rtc/rtc-tps80031.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/rtc/rtc-tps80031.c b/drivers/rtc/rtc-tps80031.c index 89ab9d8ea3c3..97406411d58c 100644 --- a/drivers/rtc/rtc-tps80031.c +++ b/drivers/rtc/rtc-tps80031.c @@ -233,7 +233,7 @@ static const struct rtc_class_ops tps80031_rtc_ops = { .alarm_irq_enable = tps80031_rtc_alarm_irq_enable, }; -static int __devinit tps80031_rtc_probe(struct platform_device *pdev) +static int tps80031_rtc_probe(struct platform_device *pdev) { struct tps80031_rtc *rtc; struct rtc_time tm; @@ -298,7 +298,7 @@ static int __devinit tps80031_rtc_probe(struct platform_device *pdev) return 0; } -static int __devexit tps80031_rtc_remove(struct platform_device *pdev) +static int tps80031_rtc_remove(struct platform_device *pdev) { struct tps80031_rtc *rtc = platform_get_drvdata(pdev); -- 2.39.5