From: Wim Van Sebroeck Date: Sun, 12 Feb 2006 15:51:34 +0000 (+0100) Subject: [WATCHDOG] pcwd.c pcwd_cleanup_module patch X-Git-Tag: firefly_0821_release~36432^2~5 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=69f83d5216e4bfffd51bb5729be2df38df0aeaf2;p=firefly-linux-kernel-4.4.55.git [WATCHDOG] pcwd.c pcwd_cleanup_module patch static void pcwd_cleanup_module doesn't need a return; Signed-off-by: Wim Van Sebroeck --- diff --git a/drivers/char/watchdog/pcwd.c b/drivers/char/watchdog/pcwd.c index 3d20241b1261..e952c9bc12bb 100644 --- a/drivers/char/watchdog/pcwd.c +++ b/drivers/char/watchdog/pcwd.c @@ -927,7 +927,6 @@ static void __exit pcwd_cleanup_module(void) { if (pcwd_private.io_addr) pcwatchdog_exit(); - return; } module_init(pcwd_init_module);