diff options
Diffstat (limited to 'board')
-rw-r--r-- | board/samsung/smdk5250/smdk5250.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/board/samsung/smdk5250/smdk5250.c b/board/samsung/smdk5250/smdk5250.c index 18dd5d2..4c50342 100644 --- a/board/samsung/smdk5250/smdk5250.c +++ b/board/samsung/smdk5250/smdk5250.c @@ -24,6 +24,7 @@ #include <asm/io.h> #include <i2c.h> #include <netdev.h> +#include <spi.h> #include <asm/arch/cpu.h> #include <asm/arch/gpio.h> #include <asm/arch/mmc.h> @@ -67,6 +68,9 @@ int board_init(void) #if defined(CONFIG_PMIC) pmic_init(); #endif +#ifdef CONFIG_EXYNOS_SPI + spi_init(); +#endif return 0; } |