diff options
Diffstat (limited to 'drivers/watchdog/at91rm9200_wdt.c')
-rw-r--r-- | drivers/watchdog/at91rm9200_wdt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/watchdog/at91rm9200_wdt.c b/drivers/watchdog/at91rm9200_wdt.c index 7ef99a169e3b..89831ed24a4f 100644 --- a/drivers/watchdog/at91rm9200_wdt.c +++ b/drivers/watchdog/at91rm9200_wdt.c | |||
@@ -199,7 +199,7 @@ static struct miscdevice at91wdt_miscdev = { | |||
199 | .fops = &at91wdt_fops, | 199 | .fops = &at91wdt_fops, |
200 | }; | 200 | }; |
201 | 201 | ||
202 | static int __devinit at91wdt_probe(struct platform_device *pdev) | 202 | static int at91wdt_probe(struct platform_device *pdev) |
203 | { | 203 | { |
204 | int res; | 204 | int res; |
205 | 205 | ||
@@ -216,7 +216,7 @@ static int __devinit at91wdt_probe(struct platform_device *pdev) | |||
216 | return 0; | 216 | return 0; |
217 | } | 217 | } |
218 | 218 | ||
219 | static int __devexit at91wdt_remove(struct platform_device *pdev) | 219 | static int at91wdt_remove(struct platform_device *pdev) |
220 | { | 220 | { |
221 | int res; | 221 | int res; |
222 | 222 | ||
@@ -254,7 +254,7 @@ static int at91wdt_resume(struct platform_device *pdev) | |||
254 | 254 | ||
255 | static struct platform_driver at91wdt_driver = { | 255 | static struct platform_driver at91wdt_driver = { |
256 | .probe = at91wdt_probe, | 256 | .probe = at91wdt_probe, |
257 | .remove = __devexit_p(at91wdt_remove), | 257 | .remove = at91wdt_remove, |
258 | .shutdown = at91wdt_shutdown, | 258 | .shutdown = at91wdt_shutdown, |
259 | .suspend = at91wdt_suspend, | 259 | .suspend = at91wdt_suspend, |
260 | .resume = at91wdt_resume, | 260 | .resume = at91wdt_resume, |