summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/cezanne/include/soc/cppc.h
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2021-11-02 19:22:27 +0100
committerFelix Held <felix-coreboot@felixheld.de>2021-11-04 03:50:22 +0000
commit371cc15a89170bcb8ab2bcdbc03ccb7909641537 (patch)
tree46f2d0265856827a6e075dc7cdd64c8c794b13e3 /src/soc/amd/cezanne/include/soc/cppc.h
parentc3ced8fa4e3fc5ef9193d19549974f862dcb2455 (diff)
downloadcoreboot-371cc15a89170bcb8ab2bcdbc03ccb7909641537.tar.gz
coreboot-371cc15a89170bcb8ab2bcdbc03ccb7909641537.tar.bz2
coreboot-371cc15a89170bcb8ab2bcdbc03ccb7909641537.zip
soc/amd/cezanne/include/cppc: use AMD_CEZANNE_CPPC_H as include guard
This makes this header file consistent with the rest. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Ice2872b4a24032d3a65777795943602cd2595de7 Reviewed-on: https://review.coreboot.org/c/coreboot/+/58864 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/soc/amd/cezanne/include/soc/cppc.h')
-rw-r--r--src/soc/amd/cezanne/include/soc/cppc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/amd/cezanne/include/soc/cppc.h b/src/soc/amd/cezanne/include/soc/cppc.h
index e2f4daaf4976..41f668775ce0 100644
--- a/src/soc/amd/cezanne/include/soc/cppc.h
+++ b/src/soc/amd/cezanne/include/soc/cppc.h
@@ -1,7 +1,7 @@
/* SPDX-License-Identifier: GPL-2.0-only */
-#ifndef _CPU_AMD_COMMON_H
-#define _CPU_AMD_COMMON_H
+#ifndef AMD_CEZANNE_CPPC_H
+#define AMD_CEZANNE_CPPC_H
#include <types.h>
#include <acpi/acpigen.h>
@@ -10,4 +10,4 @@ struct cppc_config;
void cpu_init_cppc_config(struct cppc_config *config, u32 version);
void generate_cppc_entries(unsigned int core_id);
-#endif
+#endif /* AMD_CEZANNE_CPPC_H */