diff options
author | Gerard Snitselaar <dev@snitselaar.org> | 2012-07-04 12:32:11 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2012-07-23 06:49:44 -0400 |
commit | 0402450f45673d3c03340cb1e679bf2a1fc0abee (patch) | |
tree | 15112c689d51bae48dcc1876218091a572666389 /drivers/watchdog | |
parent | 5a135f3c72c5bc738a29629d81a99c981b17a736 (diff) |
watchdog: ie6xx_wdt: section mismatch in ie6xx_wdt_probe()
ie6xx_wdt_probe() calls ie6xx_wdt_debugfs_exit() as part of
it's error cleanup path, and ie6xx_wdt_debugfs_exit() is
currently annotated __devexit.
Signed-off-by: Gerard Snitselaar <dev@snitselaar.org>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/ie6xx_wdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/ie6xx_wdt.c b/drivers/watchdog/ie6xx_wdt.c index 5f0d776f902c..8f541b940053 100644 --- a/drivers/watchdog/ie6xx_wdt.c +++ b/drivers/watchdog/ie6xx_wdt.c | |||
@@ -232,7 +232,7 @@ static void __devinit ie6xx_wdt_debugfs_init(void) | |||
232 | S_IFREG | S_IRUGO, NULL, NULL, &ie6xx_wdt_dbg_operations); | 232 | S_IFREG | S_IRUGO, NULL, NULL, &ie6xx_wdt_dbg_operations); |
233 | } | 233 | } |
234 | 234 | ||
235 | static void __devexit ie6xx_wdt_debugfs_exit(void) | 235 | static void ie6xx_wdt_debugfs_exit(void) |
236 | { | 236 | { |
237 | debugfs_remove(ie6xx_wdt_data.debugfs); | 237 | debugfs_remove(ie6xx_wdt_data.debugfs); |
238 | } | 238 | } |
@@ -242,7 +242,7 @@ static void __devinit ie6xx_wdt_debugfs_init(void) | |||
242 | { | 242 | { |
243 | } | 243 | } |
244 | 244 | ||
245 | static void __devexit ie6xx_wdt_debugfs_exit(void) | 245 | static void ie6xx_wdt_debugfs_exit(void) |
246 | { | 246 | { |
247 | } | 247 | } |
248 | #endif | 248 | #endif |