diff options
Diffstat (limited to 'arch/x86/lib/board.c')
| -rw-r--r-- | arch/x86/lib/board.c | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/arch/x86/lib/board.c b/arch/x86/lib/board.c index c7d89604c..22bc26dde 100644 --- a/arch/x86/lib/board.c +++ b/arch/x86/lib/board.c @@ -99,10 +99,17 @@ typedef int (init_fnc_t) (void);  init_fnc_t *init_sequence_f[] = {  	cpu_init_f,  	board_early_init_f, +#ifdef CONFIG_OF_CONTROL +	find_fdt, +	fdtdec_check_fdt, +#endif  	env_init,  	init_baudrate_f,  	serial_init,  	console_init_f, +#ifdef CONFIG_OF_CONTROL +	prepare_fdt, +#endif  	dram_init_f,  	calculate_relocation_address, @@ -154,6 +161,9 @@ init_fnc_t *init_sequence_r[] = {  #ifndef CONFIG_SYS_NO_FLASH  	flash_init_r,  #endif +#ifdef CONFIG_SPI +	init_func_spi; +#endif  	env_relocate_r,  #ifdef CONFIG_PCI  	pci_init_r, |