aboutsummaryrefslogtreecommitdiff
path: root/src/arch/armv7/include/bootblock_common.h
blob: 034a12bc366876f53a15e768a9fc099d30bd1948 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if CONFIG_CPU_HAS_BOOTBLOCK_INIT
void bootblock_cpu_init(void);
#else
static void __attribute__((unused)) bootblock_cpu_init(void)
{
}
#endif

#if CONFIG_MAINBOARD_HAS_BOOTBLOCK_INIT
void bootblock_mainboard_init(void);
#else
static void __attribute__((unused)) bootblock_mainboard_init(void)
{
}
#endif