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>
This commit is contained in:
parent
04de97113a
commit
4282ffe684
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue