Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/82261?usp=email )
Change subject: vc/amd/opensil/*/mpio/chip.h: add missing include guards ......................................................................
vc/amd/opensil/*/mpio/chip.h: add missing include guards
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: Idef3b661b1cf3008373e61e0760a7dd3b9e9fede --- M src/vendorcode/amd/opensil/genoa_poc/mpio/chip.h M src/vendorcode/amd/opensil/stub/mpio/chip.h 2 files changed, 10 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/61/82261/1
diff --git a/src/vendorcode/amd/opensil/genoa_poc/mpio/chip.h b/src/vendorcode/amd/opensil/genoa_poc/mpio/chip.h index 4a78ef5..36d6baf 100644 --- a/src/vendorcode/amd/opensil/genoa_poc/mpio/chip.h +++ b/src/vendorcode/amd/opensil/genoa_poc/mpio/chip.h @@ -1,5 +1,8 @@ /* SPDX-License-Identifier: GPL-2.0-only */
+#ifndef OPENSIL_GENOA_POC_MPIO_CHIP_H +#define OPENSIL_GENOA_POC_MPIO_CHIP_H + #include <stdint.h>
/* @@ -64,3 +67,5 @@ uint8_t clock_pm : 1; uint8_t bmc : 1; }; + +#endif /* OPENSIL_GENOA_POC_MPIO_CHIP_H */ diff --git a/src/vendorcode/amd/opensil/stub/mpio/chip.h b/src/vendorcode/amd/opensil/stub/mpio/chip.h index 96f60be..0957ff0 100644 --- a/src/vendorcode/amd/opensil/stub/mpio/chip.h +++ b/src/vendorcode/amd/opensil/stub/mpio/chip.h @@ -1,5 +1,8 @@ /* SPDX-License-Identifier: GPL-2.0-only */
+#ifndef OPENSIL_STUB_MPIO_CHIP_H +#define OPENSIL_STUB_MPIO_CHIP_H + #include <types.h>
enum mpio_engine_type { @@ -73,3 +76,5 @@ enum pcie_slot_power_limit_scale slot_power_limit_scale; bool bmc; }; + +#endif /* OPENSIL_STUB_MPIO_CHIP_H */