aboutsummaryrefslogtreecommitdiff
path: root/src/arch/armv7/include/bootblock_common.h
blob: 39af4535e2ff30a91b67513e5606491fd06aa66f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifdef CONFIG_BOOTBLOCK_CPU_INIT
#include CONFIG_BOOTBLOCK_CPU_INIT
#endif

#ifdef CONFIG_BOOTBLOCK_MAINBOARD_INIT
#include CONFIG_BOOTBLOCK_MAINBOARD_INIT
#else
static void bootblock_mainboard_init(void)
{
#ifdef CONFIG_BOOTBLOCK_CPU_INIT
	bootblock_cpu_init();
#endif
}
#endif