diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/pci_ids/pci_id_driver_map.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/pci_ids/pci_id_driver_map.h b/include/pci_ids/pci_id_driver_map.h index 2e88451e018..db9e07fbb28 100644 --- a/include/pci_ids/pci_id_driver_map.h +++ b/include/pci_ids/pci_id_driver_map.h @@ -2,12 +2,15 @@ #define _PCI_ID_DRIVER_MAP_H_ #include <stddef.h> -#include "loader.h" #ifndef ARRAY_SIZE #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0])) #endif +#ifndef __IS_LOADER +# error "Only include from loader.c" +#endif + static const int i915_chip_ids[] = { #define CHIPSET(chip, desc, name) chip, #include "pci_ids/i915_pci_ids.h" |