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>
This commit is contained in:
parent
5a135f3c72
commit
0402450f45
|
@ -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)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __devexit ie6xx_wdt_debugfs_exit(void)
|
static void ie6xx_wdt_debugfs_exit(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue