Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/44225 )
Change subject: include/cpu/x86/cache.h: Rename include guard ......................................................................
include/cpu/x86/cache.h: Rename include guard
Change-Id: Ibe4d9ff696755f4326509b6307c5a4dcca81ec4c Signed-off-by: Angel Pons th3fanbus@gmail.com --- M src/include/cpu/x86/cache.h 1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/25/44225/1
diff --git a/src/include/cpu/x86/cache.h b/src/include/cpu/x86/cache.h index 01b202e..b272a42 100644 --- a/src/include/cpu/x86/cache.h +++ b/src/include/cpu/x86/cache.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */
-#ifndef CPU_X86_CACHE -#define CPU_X86_CACHE +#ifndef __CPU_X86_CACHE__ +#define __CPU_X86_CACHE__
#include <cpu/x86/cr.h>
@@ -57,4 +57,4 @@ void x86_enable_cache(void);
#endif /* !__ASSEMBLER__ */ -#endif /* CPU_X86_CACHE */ +#endif /* __CPU_X86_CACHE__ */