diff options
author | Alan Cox <alan@redhat.com> | 2008-10-21 08:44:58 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-23 12:19:47 -0400 |
commit | 7dc9b48fc5b9641d4b2a222825e5be64ebb27356 (patch) | |
tree | 3c95d71a69759c0c13bbc26d86eb2d21db4f7f8e /drivers/watchdog | |
parent | a8ddac7e53e89cb877965097d05adfeb1c91def3 (diff) |
watchdog: Fix warning
This seems to have popped up after the recent merges:
drivers/watchdog/w83697ug_wdt.c: In function ‘w83697ug_select_wd_register’:
drivers/watchdog/w83697ug_wdt.c:105: warning: ‘return’ with a value, in function returning void
Signed-off-by: Alan Cox <alan@redhat.com>
Acked-by: Wim Van Sebroeck <wim@iguana.be>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/w83697ug_wdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/w83697ug_wdt.c b/drivers/watchdog/w83697ug_wdt.c index c73b5e2919c6..ada8ad82d993 100644 --- a/drivers/watchdog/w83697ug_wdt.c +++ b/drivers/watchdog/w83697ug_wdt.c | |||
@@ -102,7 +102,7 @@ static void w83697ug_select_wd_register(void) | |||
102 | 102 | ||
103 | } else { | 103 | } else { |
104 | printk(KERN_ERR PFX "No W83697UG/UF could be found\n"); | 104 | printk(KERN_ERR PFX "No W83697UG/UF could be found\n"); |
105 | return -EIO; | 105 | return; |
106 | } | 106 | } |
107 | 107 | ||
108 | outb_p(0x07, WDT_EFER); /* point to logical device number reg */ | 108 | outb_p(0x07, WDT_EFER); /* point to logical device number reg */ |