linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] watchdog/ie6xx_wdt: section mismatch in ie6xx_wdt_probe()
@ 2012-07-04 16:32 Gerard Snitselaar
  2012-07-08 12:10 ` Wim Van Sebroeck
  0 siblings, 1 reply; 2+ messages in thread
From: Gerard Snitselaar @ 2012-07-04 16:32 UTC (permalink / raw)
  To: wim; +Cc: linux-watchdog, linux-kernel

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>
---
 drivers/watchdog/ie6xx_wdt.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/watchdog/ie6xx_wdt.c b/drivers/watchdog/ie6xx_wdt.c
index 5f0d776..8f541b9 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)
 		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
-- 
1.7.11.rc0.55.gb2478aa


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] watchdog/ie6xx_wdt: section mismatch in ie6xx_wdt_probe()
  2012-07-04 16:32 [PATCH] watchdog/ie6xx_wdt: section mismatch in ie6xx_wdt_probe() Gerard Snitselaar
@ 2012-07-08 12:10 ` Wim Van Sebroeck
  0 siblings, 0 replies; 2+ messages in thread
From: Wim Van Sebroeck @ 2012-07-08 12:10 UTC (permalink / raw)
  To: Gerard Snitselaar; +Cc: linux-watchdog, linux-kernel

Hi Gerard,

> 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>

Added to linux-watchdog-next.

Kind regards,
Wim.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-07-08 12:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-04 16:32 [PATCH] watchdog/ie6xx_wdt: section mismatch in ie6xx_wdt_probe() Gerard Snitselaar
2012-07-08 12:10 ` Wim Van Sebroeck

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).