diff options
Diffstat (limited to 'drivers/rtc/rtc-m48t86.c')
-rw-r--r-- | drivers/rtc/rtc-m48t86.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/rtc/rtc-m48t86.c b/drivers/rtc/rtc-m48t86.c index 863fb3363aa6..2ffbcacd2439 100644 --- a/drivers/rtc/rtc-m48t86.c +++ b/drivers/rtc/rtc-m48t86.c | |||
@@ -144,7 +144,7 @@ static const struct rtc_class_ops m48t86_rtc_ops = { | |||
144 | .proc = m48t86_rtc_proc, | 144 | .proc = m48t86_rtc_proc, |
145 | }; | 145 | }; |
146 | 146 | ||
147 | static int __devinit m48t86_rtc_probe(struct platform_device *dev) | 147 | static int m48t86_rtc_probe(struct platform_device *dev) |
148 | { | 148 | { |
149 | unsigned char reg; | 149 | unsigned char reg; |
150 | struct m48t86_ops *ops = dev->dev.platform_data; | 150 | struct m48t86_ops *ops = dev->dev.platform_data; |
@@ -164,7 +164,7 @@ static int __devinit m48t86_rtc_probe(struct platform_device *dev) | |||
164 | return 0; | 164 | return 0; |
165 | } | 165 | } |
166 | 166 | ||
167 | static int __devexit m48t86_rtc_remove(struct platform_device *dev) | 167 | static int m48t86_rtc_remove(struct platform_device *dev) |
168 | { | 168 | { |
169 | struct rtc_device *rtc = platform_get_drvdata(dev); | 169 | struct rtc_device *rtc = platform_get_drvdata(dev); |
170 | 170 | ||
@@ -182,7 +182,7 @@ static struct platform_driver m48t86_rtc_platform_driver = { | |||
182 | .owner = THIS_MODULE, | 182 | .owner = THIS_MODULE, |
183 | }, | 183 | }, |
184 | .probe = m48t86_rtc_probe, | 184 | .probe = m48t86_rtc_probe, |
185 | .remove = __devexit_p(m48t86_rtc_remove), | 185 | .remove = m48t86_rtc_remove, |
186 | }; | 186 | }; |
187 | 187 | ||
188 | module_platform_driver(m48t86_rtc_platform_driver); | 188 | module_platform_driver(m48t86_rtc_platform_driver); |