diff options
author | Aaron Durbin <adurbin@chromium.org> | 2015-04-07 14:15:45 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@google.com> | 2015-04-07 23:01:56 +0200 |
commit | 4282ffe684eb6cacef94b3ac87d5b081303bca2e (patch) | |
tree | b7b6d39ea0a16b101fd362b768bdd37f332b889c /src/arch | |
parent | 04de97113ac6ea6ddbb014906b30d03499974841 (diff) |
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@chromium.org>
Reviewed-on: http://review.coreboot.org/9371
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/arm/armv4/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/arm/armv4/Makefile.inc b/src/arch/arm/armv4/Makefile.inc index 8557451c7c..5f12a6a545 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 |