sb/intel/i82801{gx,jx}/nvs.h: Add include guards
Change-Id: Ib7eb3469b03fd58afa1f6cb5822f7c6f1cac35e0 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42645 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
75bc530aa5
commit
e233a916d0
|
@ -1,5 +1,7 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||||
|
|
||||||
|
#ifndef SOUTHBRIDGE_INTEL_I82801GX_NVS_H
|
||||||
|
#define SOUTHBRIDGE_INTEL_I82801GX_NVS_H
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
@ -97,3 +99,5 @@ typedef struct {
|
||||||
} __packed global_nvs_t;
|
} __packed global_nvs_t;
|
||||||
|
|
||||||
void acpi_create_gnvs(global_nvs_t *gnvs);
|
void acpi_create_gnvs(global_nvs_t *gnvs);
|
||||||
|
|
||||||
|
#endif /* SOUTHBRIDGE_INTEL_I82801GX_NVS_H */
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||||
|
|
||||||
|
#ifndef SOUTHBRIDGE_INTEL_I82801JX_NVS_H
|
||||||
|
#define SOUTHBRIDGE_INTEL_I82801JX_NVS_H
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
@ -97,3 +99,5 @@ typedef struct {
|
||||||
} __packed global_nvs_t;
|
} __packed global_nvs_t;
|
||||||
|
|
||||||
void acpi_create_gnvs(global_nvs_t *gnvs);
|
void acpi_create_gnvs(global_nvs_t *gnvs);
|
||||||
|
|
||||||
|
#endif /* SOUTHBRIDGE_INTEL_I82801JX_NVS_H */
|
||||||
|
|
Loading…
Reference in New Issue