diff options
author | Mario Six <mario.six@gdsys.cc> | 2018-01-15 11:08:38 +0100 |
---|---|---|
committer | Jagan Teki <jagan@amarulasolutions.com> | 2018-01-24 12:04:07 +0530 |
commit | 184fa1c8da54d3c5305b3e1975e284e01de68bea (patch) | |
tree | ec05d9f6b5706e315f227e919fd028e4c1dac963 /drivers/spi | |
parent | 74ea6e82f8f626c8c3098dea72f008e8ec0357f9 (diff) | |
download | u-boot-184fa1c8da54d3c5305b3e1975e284e01de68bea.zip u-boot-184fa1c8da54d3c5305b3e1975e284e01de68bea.tar.gz u-boot-184fa1c8da54d3c5305b3e1975e284e01de68bea.tar.bz2 |
spi: Remove spi_setup_slave_fdt
A previous patch removed the spi_flash_probe_fdt function, which
contained the last call of the spi_setup_slave_fdt function, which is
now equally obsolete.
This patch removes the 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 'drivers/spi')
-rw-r--r-- | drivers/spi/spi-uclass.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/drivers/spi/spi-uclass.c b/drivers/spi/spi-uclass.c index e06a603..6db0eb0 100644 --- a/drivers/spi/spi-uclass.c +++ b/drivers/spi/spi-uclass.c @@ -348,22 +348,6 @@ err: } /* Compatibility function - to be removed */ -struct spi_slave *spi_setup_slave_fdt(const void *blob, int node, - int bus_node) -{ - struct udevice *bus, *dev; - int ret; - - ret = uclass_get_device_by_of_offset(UCLASS_SPI, bus_node, &bus); - if (ret) - return NULL; - ret = device_get_child_by_of_offset(bus, node, &dev); - if (ret) - return NULL; - return dev_get_parent_priv(dev); -} - -/* Compatibility function - to be removed */ struct spi_slave *spi_setup_slave(unsigned int busnum, unsigned int cs, unsigned int speed, unsigned int mode) { |