acpi_hest.h 253 B

123456789101112
  1. #ifndef __ACPI_HEST_H
  2. #define __ACPI_HEST_H
  3. #include <linux/pci.h>
  4. #ifdef CONFIG_ACPI
  5. extern int acpi_hest_firmware_first_pci(struct pci_dev *pci);
  6. #else
  7. static inline int acpi_hest_firmware_first_pci(struct pci_dev *pci) { return 0; }
  8. #endif
  9. #endif