aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/common/block/include/amdblocks/smu.h
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2020-11-14 00:30:21 +0100
committerFelix Held <felix-coreboot@felixheld.de>2020-11-16 08:12:56 +0000
commit14e343214804b647176e3cbba8c7ae707ef671d4 (patch)
tree119897161c7224c122928b064a9588232effd347 /src/soc/amd/common/block/include/amdblocks/smu.h
parente70c32f7b713360e865638c6f2eea6194af91e1f (diff)
soc/amd/common/block: drop double underscores from include guards
Since coreboot is written in C and not C++, having the double underscores as a prefix is not an issue, but it also doesn't add much information, so drop them and the trailing ones as well. Change-Id: I1028fb9097efab8ffae5ffa9fe85a97feebc78a9 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47583 Reviewed-by: Martin Roth <martinroth@google.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/common/block/include/amdblocks/smu.h')
-rw-r--r--src/soc/amd/common/block/include/amdblocks/smu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/amd/common/block/include/amdblocks/smu.h b/src/soc/amd/common/block/include/amdblocks/smu.h
index 57ef3b324e..ca5e37a7ee 100644
--- a/src/soc/amd/common/block/include/amdblocks/smu.h
+++ b/src/soc/amd/common/block/include/amdblocks/smu.h
@@ -1,7 +1,7 @@
/* SPDX-License-Identifier: GPL-2.0-only */
-#ifndef __AMD_BLOCK_SMU_H__
-#define __AMD_BLOCK_SMU_H__
+#ifndef AMD_BLOCK_SMU_H
+#define AMD_BLOCK_SMU_H
#include <types.h>
#include <soc/smu.h> /* SoC-dependent definitions for SMU access */
@@ -23,4 +23,4 @@ struct smu_payload {
*/
enum cb_err send_smu_message(enum smu_message_id message_id, struct smu_payload *arg);
-#endif /* __AMD_BLOCK_SMU_H__ */
+#endif /* AMD_BLOCK_SMU_H */