summaryrefslogtreecommitdiff
path: root/board/Arcturus
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-09-24 18:20:10 -0600
committerTom Rini <trini@konsulko.com>2016-10-06 15:07:35 -0400
commitea022a3775a723a90ee91dfa100ac95a5379e93d (patch)
tree972265801e6c27bc402680afe4571b3234bbbe05 /board/Arcturus
parent139db7af4eff4eabdcc104c5c5687ab9fe64ca9a (diff)
spi: Move freescale-specific code into a private header
At present there are two SPI functions only used by freescale which are defined in the spi_flash.h header. One function name matches an existing generic SPL function. Move these into a private header to avoid confusion. Arcturus looks like it does not actually support SPI, so drop the SPI code from that board. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/Arcturus')
-rw-r--r--board/Arcturus/ucp1020/spl.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/board/Arcturus/ucp1020/spl.c b/board/Arcturus/ucp1020/spl.c
index 9315bb7401..9c19c87b72 100644
--- a/board/Arcturus/ucp1020/spl.c
+++ b/board/Arcturus/ucp1020/spl.c
@@ -119,8 +119,6 @@ void board_init_r(gd_t *gd, ulong dest_addr)
#ifdef CONFIG_SPL_MMC_BOOT
mmc_boot();
-#elif defined(CONFIG_SPL_SPI_BOOT)
- spi_boot();
#elif defined(CONFIG_SPL_NAND_BOOT)
nand_boot();
#endif