diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-04-29 19:18:22 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-29 21:28:20 -0400 |
commit | 5149c0359f1db846d97223206d271c06ef176049 (patch) | |
tree | 6aa130fa3c3821fdeff6740277cc444f102b2ccd /drivers/rtc/rtc-davinci.c | |
parent | b69af4373abe1e64274bc5217452fb14affb4ff7 (diff) |
rtc: rtc-davinci: add __exit annotation
When platform_driver_probe() is used, bind/unbind via sysfs is disabled.
Thus, __init/__exit annotations can be added to probe()/remove().
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/rtc-davinci.c')
-rw-r--r-- | drivers/rtc/rtc-davinci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-davinci.c b/drivers/rtc/rtc-davinci.c index 56b73089bb29..db877e02f2a2 100644 --- a/drivers/rtc/rtc-davinci.c +++ b/drivers/rtc/rtc-davinci.c | |||
@@ -564,7 +564,7 @@ fail1: | |||
564 | return ret; | 564 | return ret; |
565 | } | 565 | } |
566 | 566 | ||
567 | static int davinci_rtc_remove(struct platform_device *pdev) | 567 | static int __exit davinci_rtc_remove(struct platform_device *pdev) |
568 | { | 568 | { |
569 | struct davinci_rtc *davinci_rtc = platform_get_drvdata(pdev); | 569 | struct davinci_rtc *davinci_rtc = platform_get_drvdata(pdev); |
570 | 570 | ||
@@ -581,7 +581,7 @@ static int davinci_rtc_remove(struct platform_device *pdev) | |||
581 | 581 | ||
582 | static struct platform_driver davinci_rtc_driver = { | 582 | static struct platform_driver davinci_rtc_driver = { |
583 | .probe = davinci_rtc_probe, | 583 | .probe = davinci_rtc_probe, |
584 | .remove = davinci_rtc_remove, | 584 | .remove = __exit_p(davinci_rtc_remove), |
585 | .driver = { | 585 | .driver = { |
586 | .name = "rtc_davinci", | 586 | .name = "rtc_davinci", |
587 | .owner = THIS_MODULE, | 587 | .owner = THIS_MODULE, |