Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -232,7 +232,7 @@ static void __devinit ie6xx_wdt_debugfs_init(void)
		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);
}
@@ -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