ARMv7: Drop duplicate call to bootblock_cpu_init()

This is already called in ARMv7 bootblock_simple.c so we don't
want to do it twice

Change-Id: I80cb41035b8a77787e04f2ea58a1cd372cea97d8
Signed-off-by: Stefan Reinauer <reinauer@chromium.org>
Signed-off-by: Gabe Black <gabeblack@chromium.org>
Reviewed-on: http://review.coreboot.org/3692
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
Stefan Reinauer 2013-06-12 17:07:05 -07:00 committed by Stefan Reinauer
parent d2f45c6516
commit 6b0bab916a
1 changed files with 0 additions and 3 deletions

View File

@ -7,8 +7,5 @@
#else
static void bootblock_mainboard_init(void)
{
#ifdef CONFIG_BOOTBLOCK_CPU_INIT
bootblock_cpu_init();
#endif
}
#endif