[coreboot-gerrit] New patch to review for coreboot: f25dfd9 armv4: correct ARMV4 VERSTAGE guard

Aaron Durbin (adurbin@google.com) gerrit at coreboot.org
Tue Apr 7 21:48:39 CEST 2015


Aaron Durbin (adurbin at google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9371

-gerrit

commit f25dfd999b6f35231b55617e16f6302aca7ccee4
Author: Aaron Durbin <adurbin at chromium.org>
Date:   Tue Apr 7 14:15:45 2015 -0500

    armv4: correct ARMV4 VERSTAGE guard
    
    I overlooked the macro name change from the Kconfig option.
    'ARM' and 'V4' should not be separated by a '_'.
    
    Change-Id: I8bf0d851e6fd5b5cfc0aa29af2246540c8cb1399
    Signed-off-by: Aaron Durbin <adurbin at chromium.org>
---
 src/arch/arm/armv4/Makefile.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/arch/arm/armv4/Makefile.inc b/src/arch/arm/armv4/Makefile.inc
index 8557451..5f12a6a 100644
--- a/src/arch/arm/armv4/Makefile.inc
+++ b/src/arch/arm/armv4/Makefile.inc
@@ -44,12 +44,12 @@ endif # CONFIG_ARCH_BOOTBLOCK_ARMV4
 ## Verstage
 ################################################################################
 
-ifeq ($(CONFIG_ARCH_VERSTAGE_ARM_V4),y)
+ifeq ($(CONFIG_ARCH_VERSTAGE_ARMV4),y)
 verstage-c-ccopts += $(armv4_flags)
 verstage-S-ccopts += $(armv4_flags)
 
 verstage-y += cache.c
-endif # CONFIG_ARCH_VERSTAGE_ARM_V4
+endif # CONFIG_ARCH_VERSTAGE_ARMV4
 
 ###############################################################################
 # romstage



More information about the coreboot-gerrit mailing list