diff options
Diffstat (limited to 'drivers/watchdog/max63xx_wdt.c')
-rw-r--r-- | drivers/watchdog/max63xx_wdt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/watchdog/max63xx_wdt.c b/drivers/watchdog/max63xx_wdt.c index 8f4a74e91619..773c661723ca 100644 --- a/drivers/watchdog/max63xx_wdt.c +++ b/drivers/watchdog/max63xx_wdt.c | |||
@@ -174,7 +174,7 @@ static struct watchdog_device max63xx_wdt_dev = { | |||
174 | .ops = &max63xx_wdt_ops, | 174 | .ops = &max63xx_wdt_ops, |
175 | }; | 175 | }; |
176 | 176 | ||
177 | static int __devinit max63xx_wdt_probe(struct platform_device *pdev) | 177 | static int max63xx_wdt_probe(struct platform_device *pdev) |
178 | { | 178 | { |
179 | struct resource *wdt_mem; | 179 | struct resource *wdt_mem; |
180 | struct max63xx_timeout *table; | 180 | struct max63xx_timeout *table; |
@@ -209,7 +209,7 @@ static int __devinit max63xx_wdt_probe(struct platform_device *pdev) | |||
209 | return watchdog_register_device(&max63xx_wdt_dev); | 209 | return watchdog_register_device(&max63xx_wdt_dev); |
210 | } | 210 | } |
211 | 211 | ||
212 | static int __devexit max63xx_wdt_remove(struct platform_device *pdev) | 212 | static int max63xx_wdt_remove(struct platform_device *pdev) |
213 | { | 213 | { |
214 | watchdog_unregister_device(&max63xx_wdt_dev); | 214 | watchdog_unregister_device(&max63xx_wdt_dev); |
215 | return 0; | 215 | return 0; |
@@ -228,7 +228,7 @@ MODULE_DEVICE_TABLE(platform, max63xx_id_table); | |||
228 | 228 | ||
229 | static struct platform_driver max63xx_wdt_driver = { | 229 | static struct platform_driver max63xx_wdt_driver = { |
230 | .probe = max63xx_wdt_probe, | 230 | .probe = max63xx_wdt_probe, |
231 | .remove = __devexit_p(max63xx_wdt_remove), | 231 | .remove = max63xx_wdt_remove, |
232 | .id_table = max63xx_id_table, | 232 | .id_table = max63xx_id_table, |
233 | .driver = { | 233 | .driver = { |
234 | .name = "max63xx_wdt", | 234 | .name = "max63xx_wdt", |