Ver código fonte

Merge git://www.linux-watchdog.org/linux-watchdog

Pull watchdog fix from Wim Van Sebroeck:
 "It corrects the error code when no device was found for w83697hf_wdt"

* git://www.linux-watchdog.org/linux-watchdog:
  watchdog: w83697hf_wdt: return ENODEV if no device was found
Linus Torvalds 11 anos atrás
pai
commit
0a4e836a60
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      drivers/watchdog/w83697hf_wdt.c

+ 1 - 1
drivers/watchdog/w83697hf_wdt.c

@@ -402,7 +402,7 @@ static int __init wdt_init(void)
 
 	if (!found) {
 		pr_err("No W83697HF/HG could be found\n");
-		ret = -EIO;
+		ret = -ENODEV;
 		goto out;
 	}