Select the types of activity you want to include in your feed.
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