aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/intel/bd82x6x
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2020-06-28 16:54:45 +0300
committerPatrick Georgi <pgeorgi@google.com>2020-06-30 09:20:02 +0000
commitbdcccc0b88bc10e299468e317d24a78367536fb2 (patch)
tree093d7de361be6ae5f36fd15e4ffb63826dba047a /src/southbridge/intel/bd82x6x
parent05ba1e9bf2cf34c34de2d5ac62c827ac6d016cf8 (diff)
sb/intel: Add include guards on nvs.h
Change-Id: I110974f3161f2991536df50acdfe32f68bd2cc60 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42850 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/southbridge/intel/bd82x6x')
-rw-r--r--src/southbridge/intel/bd82x6x/nvs.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/southbridge/intel/bd82x6x/nvs.h b/src/southbridge/intel/bd82x6x/nvs.h
index ae3304ee8e..b75e0ab025 100644
--- a/src/southbridge/intel/bd82x6x/nvs.h
+++ b/src/southbridge/intel/bd82x6x/nvs.h
@@ -1,5 +1,8 @@
/* SPDX-License-Identifier: GPL-2.0-only */
+#ifndef SOUTHBRIDGE_INTEL_BD82X6X_NVS_H
+#define SOUTHBRIDGE_INTEL_BD82X6X_NVS_H
+
#include <commonlib/helpers.h>
#include <stdint.h>
#include "vendorcode/google/chromeos/gnvs.h"
@@ -105,3 +108,5 @@ struct __packed global_nvs {
};
check_member(global_nvs, chromeos, GNVS_CHROMEOS_ACPI_OFFSET);
+
+#endif /* SOUTHBRIDGE_INTEL_BD82X6X_NVS_H */