aboutsummaryrefslogtreecommitdiff
path: root/src/include/cpu/x86/post_code.h
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2017-07-23 21:05:24 -0600
committerStefan Reinauer <stefan.reinauer@coreboot.org>2017-08-01 23:04:15 +0000
commit7a4c02145d2bfd3779eb56f0a09f03e799f1dc33 (patch)
treefec257b628b576700c15b352d34daf1545b1ac47 /src/include/cpu/x86/post_code.h
parent284409fd8cec208b2c3af039a024f7ddb69576b2 (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/cpu/x86/post_code.h')
-rw-r--r--src/include/cpu/x86/post_code.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/cpu/x86/post_code.h b/src/include/cpu/x86/post_code.h
index cd3d1599ed..5f968b75fb 100644
--- a/src/include/cpu/x86/post_code.h
+++ b/src/include/cpu/x86/post_code.h
@@ -1,3 +1,5 @@
+#ifndef __X86_POST_CODE_H__
+#define __X86_POST_CODE_H__
#include <console/post_codes.h>
@@ -10,3 +12,5 @@
#else
#define post_code(value)
#endif
+
+#endif /* __X86_POST_CODE_H__ */