diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-10-05 22:29:47 +0800 |
---|---|---|
committer | Guan Xuetao <gxt@mprc.pku.edu.cn> | 2011-11-15 17:13:17 +0800 |
commit | 66ae45604c90f25397294099cdb214f642471327 (patch) | |
tree | 9ca41b6489615099e9ee5aad225f5340e7ccbcd3 /drivers/rtc | |
parent | 63c95fa414032adb56194d026c9ed054488b0783 (diff) | |
download | linux-3.10-66ae45604c90f25397294099cdb214f642471327.tar.gz linux-3.10-66ae45604c90f25397294099cdb214f642471327.tar.bz2 linux-3.10-66ae45604c90f25397294099cdb214f642471327.zip |
rtc: rtc-puv3: Add __devinit and __devexit markers for probe and remove
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Guan Xuetao <gxt@mprc.pku.edu.cn>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-puv3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-puv3.c b/drivers/rtc/rtc-puv3.c index b3eba3cddd4..e4b6880aabd 100644 --- a/drivers/rtc/rtc-puv3.c +++ b/drivers/rtc/rtc-puv3.c @@ -220,7 +220,7 @@ static void puv3_rtc_enable(struct platform_device *pdev, int en) } } -static int puv3_rtc_remove(struct platform_device *dev) +static int __devexit puv3_rtc_remove(struct platform_device *dev) { struct rtc_device *rtc = platform_get_drvdata(dev); @@ -236,7 +236,7 @@ static int puv3_rtc_remove(struct platform_device *dev) return 0; } -static int puv3_rtc_probe(struct platform_device *pdev) +static int __devinit puv3_rtc_probe(struct platform_device *pdev) { struct rtc_device *rtc; struct resource *res; |