Commit 4cd0c5c4 authored by Ben Dooks's avatar Ben Dooks Committed by Linus Torvalds

rtc: rtc-s3c: add __devexit and __devinit markers

Add the relevant __devinit and __devexit attributes to the rtc-s3c driver.
Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
Acked-by: default avatarAlessandro Zummo <a.zummo@towertech.it>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 35d3fdd5
...@@ -430,7 +430,7 @@ static void s3c_rtc_enable(struct platform_device *pdev, int en) ...@@ -430,7 +430,7 @@ static void s3c_rtc_enable(struct platform_device *pdev, int en)
} }
} }
static int s3c_rtc_remove(struct platform_device *dev) static int __devexit s3c_rtc_remove(struct platform_device *dev)
{ {
struct rtc_device *rtc = platform_get_drvdata(dev); struct rtc_device *rtc = platform_get_drvdata(dev);
...@@ -447,7 +447,7 @@ static int s3c_rtc_remove(struct platform_device *dev) ...@@ -447,7 +447,7 @@ static int s3c_rtc_remove(struct platform_device *dev)
return 0; return 0;
} }
static int s3c_rtc_probe(struct platform_device *pdev) static int __devinit s3c_rtc_probe(struct platform_device *pdev)
{ {
struct rtc_device *rtc; struct rtc_device *rtc;
struct resource *res; struct resource *res;
...@@ -560,7 +560,7 @@ static int s3c_rtc_resume(struct platform_device *pdev) ...@@ -560,7 +560,7 @@ static int s3c_rtc_resume(struct platform_device *pdev)
static struct platform_driver s3c2410_rtcdrv = { static struct platform_driver s3c2410_rtcdrv = {
.probe = s3c_rtc_probe, .probe = s3c_rtc_probe,
.remove = s3c_rtc_remove, .remove = __devexit_p(s3c_rtc_remove),
.suspend = s3c_rtc_suspend, .suspend = s3c_rtc_suspend,
.resume = s3c_rtc_resume, .resume = s3c_rtc_resume,
.driver = { .driver = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment