diff options
author | Mario Six <mario.six@gdsys.cc> | 2018-01-15 11:08:36 +0100 |
---|---|---|
committer | Jagan Teki <jagan@amarulasolutions.com> | 2018-01-24 12:04:07 +0530 |
commit | c5b88f29ba46997e1cae39153980cae475b87b82 (patch) | |
tree | 2301885299c70f1035259bee5402563794c09bbf /include/spi.h | |
parent | 547bcc3d18ddcc107b8aa7ca393830590c27978f (diff) | |
download | u-boot-c5b88f29ba46997e1cae39153980cae475b87b82.tar.gz u-boot-c5b88f29ba46997e1cae39153980cae475b87b82.tar.bz2 u-boot-c5b88f29ba46997e1cae39153980cae475b87b82.zip |
spi: Remove obsolete spi_base_setup_slave_fdt
0efc024 ("spi_flash: Add spi_flash_probe_fdt() to locate SPI by FDT
node") added a helper function spi_base_setup_slave_fdt to to set up a
SPI slave from a given FDT blob. The only user was the exynos SPI
driver.
But commit 73186c9 ("dm: exynos: Convert SPI to driver model") removed
the use of this function, hence rendering it obsolete.
Remove this function, as well as the CONFIG_OF_SPI option, which guarded
only this function.
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Jagan Teki <jagan@openedev.com>
Signed-off-by: Mario Six <mario.six@gdsys.cc>
Diffstat (limited to 'include/spi.h')
-rw-r--r-- | include/spi.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/spi.h b/include/spi.h index 5a7df1c706..b2a80a5609 100644 --- a/include/spi.h +++ b/include/spi.h @@ -330,20 +330,6 @@ static inline int spi_w8r8(struct spi_slave *slave, unsigned char byte) */ struct spi_slave *spi_setup_slave_fdt(const void *blob, int slave_node, int spi_node); - -/** - * spi_base_setup_slave_fdt() - helper function to set up a SPI slace - * - * This decodes SPI properties from the slave node to determine the - * chip select and SPI parameters. - * - * @blob: Device tree blob - * @busnum: Bus number to use - * @node: Device tree node for the SPI bus - */ -struct spi_slave *spi_base_setup_slave_fdt(const void *blob, int busnum, - int node); - #ifdef CONFIG_DM_SPI /** |