Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+1 -1
+1 -1
drivers/watchdog/w83697hf_wdt.c
··· 402 402 403 403 if (!found) { 404 404 pr_err("No W83697HF/HG could be found\n"); 405 - ret = -EIO; 405 + ret = -ENODEV; 406 406 goto out; 407 407 } 408 408