From 56b830938af3638538558ba92ac6c168b6a217ef Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Thu, 2 Apr 2015 19:44:19 +0200 Subject: build system: rename __BOOT_BLOCK__ and __VER_STAGE__ Drop the inner underscore for consistency. Follows the commit stated below. Change-Id: I75cde6e2cd55d2c0fbb5a2d125c359d91e14cf6d Signed-off-by: Patrick Georgi Based-on-Change-Id: I6a1f25f7077328a8b5201a79b18fc4c2e22d0b06 Based-on-Signed-off-by: Julius Werner Based-on-Reviewed-on: https://chromium-review.googlesource.com/219172 Reviewed-on: http://review.coreboot.org/9290 Reviewed-by: Aaron Durbin Tested-by: build bot (Jenkins) --- src/cpu/allwinner/a10/clock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cpu/allwinner/a10') diff --git a/src/cpu/allwinner/a10/clock.c b/src/cpu/allwinner/a10/clock.c index f189aeae02..a8e21514d3 100644 --- a/src/cpu/allwinner/a10/clock.c +++ b/src/cpu/allwinner/a10/clock.c @@ -130,7 +130,7 @@ void a1x_gate_dram_clock_output(void) * Linker doesn't garbage collect and the function below adds about half * kilobyte to the bootblock, and log2_ceil is not available in the bootblock. */ -#ifndef __BOOT_BLOCK__ +#ifndef __BOOTBLOCK__ #define PLL1_CFG(N, K, M, P_EXP) \ ((1 << 31 | 0 << 30 | 8 << 26 | 0 << 25 | 16 << 20 | 2 << 13) | \ @@ -270,4 +270,4 @@ void a1x_set_cpu_clock(u16 cpu_clk_mhz) udelay(1); } -#endif /* __BOOT_BLOCK__ */ +#endif /* __BOOTBLOCK__ */ -- cgit v1.2.3