diff options
author | Martin Roth <martinroth@google.com> | 2017-07-23 21:07:50 -0600 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2017-08-01 23:04:27 +0000 |
commit | 1cd303a6fc914e797e8f4924f30dd964cb57ba94 (patch) | |
tree | 9b4cbfbee64ec37371c258dc2ec0a083a1939279 /src | |
parent | 7a4c02145d2bfd3779eb56f0a09f03e799f1dc33 (diff) | |
download | coreboot-1cd303a6fc914e797e8f4924f30dd964cb57ba94.tar.xz |
src/acpi: Add guards on all header files
Change-Id: I1b2d82a85194df6660bc041af8a690acc5469d02
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/20735
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/acpi/sata.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/acpi/sata.h b/src/acpi/sata.h index 83713410f8..fecf4c6b03 100644 --- a/src/acpi/sata.h +++ b/src/acpi/sata.h @@ -11,6 +11,11 @@ * GNU General Public License for more details. */ +#ifndef __ACPI_SATA_H__ +#define __ACPI_SATA_H__ + #include <stdint.h> void generate_sata_ssdt_ports(const char *scope, uint32_t enable_map); + +#endif |