diff options
author | Simon Glass <sjg@chromium.org> | 2016-09-24 18:20:10 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-10-06 15:07:35 -0400 |
commit | ea022a3775a723a90ee91dfa100ac95a5379e93d (patch) | |
tree | 972265801e6c27bc402680afe4571b3234bbbe05 /drivers/mtd | |
parent | 139db7af4eff4eabdcc104c5c5687ab9fe64ca9a (diff) | |
download | u-boot-imx-ea022a3775a723a90ee91dfa100ac95a5379e93d.zip u-boot-imx-ea022a3775a723a90ee91dfa100ac95a5379e93d.tar.gz u-boot-imx-ea022a3775a723a90ee91dfa100ac95a5379e93d.tar.bz2 |
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 'drivers/mtd')
-rw-r--r-- | drivers/mtd/spi/fsl_espi_spl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/spi/fsl_espi_spl.c b/drivers/mtd/spi/fsl_espi_spl.c index b915469..1dd44e2 100644 --- a/drivers/mtd/spi/fsl_espi_spl.c +++ b/drivers/mtd/spi/fsl_espi_spl.c @@ -12,7 +12,7 @@ #define ESPI_BOOT_IMAGE_ADDR 0x50 #define CONFIG_CFG_DATA_SECTOR 0 -void spi_spl_load_image(uint32_t offs, unsigned int size, void *vdst) +void fsl_spi_spl_load_image(uint32_t offs, unsigned int size, void *vdst) { struct spi_flash *flash; @@ -31,7 +31,7 @@ void spi_spl_load_image(uint32_t offs, unsigned int size, void *vdst) * configured and available since this code loads the main U-Boot image * from SPI into SDRAM and starts it from there. */ -void spi_boot(void) +void fsl_spi_boot(void) { void (*uboot)(void) __noreturn; u32 offset, code_len, copy_len = 0; |