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:
"Make sure that the hpwdt driver will not load auxilary iLO devices"

* git://www.linux-watchdog.org/linux-watchdog:
watchdog: hpwdt: Patch to ignore auxilary iLO devices

+6
+6
drivers/watchdog/hpwdt.c
··· 802 802 return -ENODEV; 803 803 } 804 804 805 + /* 806 + * Ignore all auxilary iLO devices with the following PCI ID 807 + */ 808 + if (dev->subsystem_device == 0x1979) 809 + return -ENODEV; 810 + 805 811 if (pci_enable_device(dev)) { 806 812 dev_warn(&dev->dev, 807 813 "Not possible to enable PCI Device: 0x%x:0x%x.\n",