Commit 0402450f45673d3c03340cb1e679bf2a1fc0abee

Authored by Gerard Snitselaar
Committed by Wim Van Sebroeck
1 parent 5a135f3c72

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>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

drivers/watchdog/ie6xx_wdt.c
... ... @@ -232,7 +232,7 @@
232 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 237 debugfs_remove(ie6xx_wdt_data.debugfs);
238 238 }
... ... @@ -242,7 +242,7 @@
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 248 #endif