diff options
author | Martin Roth <martinroth@google.com> | 2017-07-23 21:05:24 -0600 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2017-08-01 23:04:15 +0000 |
commit | 7a4c02145d2bfd3779eb56f0a09f03e799f1dc33 (patch) | |
tree | fec257b628b576700c15b352d34daf1545b1ac47 /src/include/device | |
parent | 284409fd8cec208b2c3af039a024f7ddb69576b2 (diff) |
src/include: Add guards on all header files
Change-Id: I2d7d4e0b25f2cf3eef2040f89d5ebc711909cdd7
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/20734
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Diffstat (limited to 'src/include/device')
-rw-r--r-- | src/include/device/pci_ids.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index 9887b68062..07b66d18a4 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -1,3 +1,6 @@ +#ifndef __DEVICE_PCI_IDS_H__ +#define __DEVICE_PCI_IDS_H__ + /* * PCI Class, Vendor and Device IDs * @@ -3078,3 +3081,5 @@ #define PCI_DEVICE_ID_AMD_VIPER_7412 0x7412 /* END OLDER USAGE */ + +#endif /* __DEVICE_PCI_IDS_H__ */ |