aboutsummaryrefslogtreecommitdiff
path: root/src/acpi
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2017-07-23 21:07:50 -0600
committerStefan Reinauer <stefan.reinauer@coreboot.org>2017-08-01 23:04:27 +0000
commit1cd303a6fc914e797e8f4924f30dd964cb57ba94 (patch)
tree9b4cbfbee64ec37371c258dc2ec0a083a1939279 /src/acpi
parent7a4c02145d2bfd3779eb56f0a09f03e799f1dc33 (diff)
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/acpi')
-rw-r--r--src/acpi/sata.h5
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