diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-04-29 19:18:26 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-29 21:28:21 -0400 |
commit | 5cc2b9c67ac0c90915c99fa1a53778049f0e747d (patch) | |
tree | 80b07199762cddc4137585312a5f25f8eee8eb4d /drivers/rtc/rtc-pcap.c | |
parent | e7a6c21475a7d0dcb6e2248eb210e7db1d370222 (diff) |
rtc: rtc-pcap: add __init/__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-pcap.c')
-rw-r--r-- | drivers/rtc/rtc-pcap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/rtc/rtc-pcap.c b/drivers/rtc/rtc-pcap.c index e0019cd0bf71..48db88acb8e3 100644 --- a/drivers/rtc/rtc-pcap.c +++ b/drivers/rtc/rtc-pcap.c | |||
@@ -139,7 +139,7 @@ static const struct rtc_class_ops pcap_rtc_ops = { | |||
139 | .alarm_irq_enable = pcap_rtc_alarm_irq_enable, | 139 | .alarm_irq_enable = pcap_rtc_alarm_irq_enable, |
140 | }; | 140 | }; |
141 | 141 | ||
142 | static int pcap_rtc_probe(struct platform_device *pdev) | 142 | static int __init pcap_rtc_probe(struct platform_device *pdev) |
143 | { | 143 | { |
144 | struct pcap_rtc *pcap_rtc; | 144 | struct pcap_rtc *pcap_rtc; |
145 | int timer_irq, alarm_irq; | 145 | int timer_irq, alarm_irq; |
@@ -183,7 +183,7 @@ fail_rtc: | |||
183 | return err; | 183 | return err; |
184 | } | 184 | } |
185 | 185 | ||
186 | static int pcap_rtc_remove(struct platform_device *pdev) | 186 | static int __exit pcap_rtc_remove(struct platform_device *pdev) |
187 | { | 187 | { |
188 | struct pcap_rtc *pcap_rtc = platform_get_drvdata(pdev); | 188 | struct pcap_rtc *pcap_rtc = platform_get_drvdata(pdev); |
189 | 189 | ||
@@ -196,7 +196,7 @@ static int pcap_rtc_remove(struct platform_device *pdev) | |||
196 | } | 196 | } |
197 | 197 | ||
198 | static struct platform_driver pcap_rtc_driver = { | 198 | static struct platform_driver pcap_rtc_driver = { |
199 | .remove = pcap_rtc_remove, | 199 | .remove = __exit_p(pcap_rtc_remove), |
200 | .driver = { | 200 | .driver = { |
201 | .name = "pcap-rtc", | 201 | .name = "pcap-rtc", |
202 | .owner = THIS_MODULE, | 202 | .owner = THIS_MODULE, |