diff options
Diffstat (limited to 'drivers/watchdog/ep93xx_wdt.c')
-rw-r--r-- | drivers/watchdog/ep93xx_wdt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/watchdog/ep93xx_wdt.c b/drivers/watchdog/ep93xx_wdt.c index 77050037597a..e0574844c313 100644 --- a/drivers/watchdog/ep93xx_wdt.c +++ b/drivers/watchdog/ep93xx_wdt.c | |||
@@ -112,7 +112,7 @@ static struct watchdog_device ep93xx_wdt_wdd = { | |||
112 | .ops = &ep93xx_wdt_ops, | 112 | .ops = &ep93xx_wdt_ops, |
113 | }; | 113 | }; |
114 | 114 | ||
115 | static int __devinit ep93xx_wdt_probe(struct platform_device *pdev) | 115 | static int ep93xx_wdt_probe(struct platform_device *pdev) |
116 | { | 116 | { |
117 | struct resource *res; | 117 | struct resource *res; |
118 | unsigned long val; | 118 | unsigned long val; |
@@ -156,7 +156,7 @@ static int __devinit ep93xx_wdt_probe(struct platform_device *pdev) | |||
156 | return 0; | 156 | return 0; |
157 | } | 157 | } |
158 | 158 | ||
159 | static int __devexit ep93xx_wdt_remove(struct platform_device *pdev) | 159 | static int ep93xx_wdt_remove(struct platform_device *pdev) |
160 | { | 160 | { |
161 | watchdog_unregister_device(&ep93xx_wdt_wdd); | 161 | watchdog_unregister_device(&ep93xx_wdt_wdd); |
162 | return 0; | 162 | return 0; |
@@ -168,7 +168,7 @@ static struct platform_driver ep93xx_wdt_driver = { | |||
168 | .name = "ep93xx-wdt", | 168 | .name = "ep93xx-wdt", |
169 | }, | 169 | }, |
170 | .probe = ep93xx_wdt_probe, | 170 | .probe = ep93xx_wdt_probe, |
171 | .remove = __devexit_p(ep93xx_wdt_remove), | 171 | .remove = ep93xx_wdt_remove, |
172 | }; | 172 | }; |
173 | 173 | ||
174 | module_platform_driver(ep93xx_wdt_driver); | 174 | module_platform_driver(ep93xx_wdt_driver); |