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.

at v2.6.33-rc2 12 lines 253 B view raw
1#ifndef __ACPI_HEST_H 2#define __ACPI_HEST_H 3 4#include <linux/pci.h> 5 6#ifdef CONFIG_ACPI 7extern int acpi_hest_firmware_first_pci(struct pci_dev *pci); 8#else 9static inline int acpi_hest_firmware_first_pci(struct pci_dev *pci) { return 0; } 10#endif 11 12#endif