Commit 0402450f authored by Gerard Snitselaar's avatar Gerard Snitselaar Committed by Wim Van Sebroeck

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: default avatarGerard Snitselaar <dev@snitselaar.org>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent 5a135f3c
...@@ -232,7 +232,7 @@ static void __devinit ie6xx_wdt_debugfs_init(void) ...@@ -232,7 +232,7 @@ static void __devinit ie6xx_wdt_debugfs_init(void)
S_IFREG | S_IRUGO, NULL, NULL, &ie6xx_wdt_dbg_operations); S_IFREG | S_IRUGO, NULL, NULL, &ie6xx_wdt_dbg_operations);
} }
static void __devexit ie6xx_wdt_debugfs_exit(void) static void ie6xx_wdt_debugfs_exit(void)
{ {
debugfs_remove(ie6xx_wdt_data.debugfs); debugfs_remove(ie6xx_wdt_data.debugfs);
} }
...@@ -242,7 +242,7 @@ static void __devinit ie6xx_wdt_debugfs_init(void) ...@@ -242,7 +242,7 @@ static void __devinit ie6xx_wdt_debugfs_init(void)
{ {
} }
static void __devexit ie6xx_wdt_debugfs_exit(void) static void ie6xx_wdt_debugfs_exit(void)
{ {
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment