diff options
author | Simon Glass <sjg@chromium.org> | 2014-10-13 23:42:01 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-10-22 10:36:49 -0600 |
commit | 73186c9460761315a5a5dfd352c631ab2a022f28 (patch) | |
tree | 4a583fdccc9388ac51962b3029f683585edf56a6 /board/samsung/common | |
parent | 623b638607aa00dad85cee36e229011c79b249ce (diff) | |
download | u-boot-imx-73186c9460761315a5a5dfd352c631ab2a022f28.zip u-boot-imx-73186c9460761315a5a5dfd352c631ab2a022f28.tar.gz u-boot-imx-73186c9460761315a5a5dfd352c631ab2a022f28.tar.bz2 |
dm: exynos: Convert SPI to driver model
Move the exynos SPI driver over to driver model. This removes quite a bit
of boilerplate from the driver, although it adds some for driver model.
A few device tree additions are needed to make the SPI flash available.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Jagannadha Sutradharudu Teki <jagannadh.teki@gmail.com>
Diffstat (limited to 'board/samsung/common')
-rw-r--r-- | board/samsung/common/board.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/board/samsung/common/board.c b/board/samsung/common/board.c index c119641..e1fc123 100644 --- a/board/samsung/common/board.c +++ b/board/samsung/common/board.c @@ -87,9 +87,6 @@ int board_init(void) boot_temp_check(); #endif -#ifdef CONFIG_EXYNOS_SPI - spi_init(); -#endif return exynos_init(); } |