mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 02:08:00 +00:00
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>
This commit is contained in:
parent
74ea6e82f8
commit
184fa1c8da
2 changed files with 0 additions and 29 deletions
|
@ -317,19 +317,6 @@ static inline int spi_w8r8(struct spi_slave *slave, unsigned char byte)
|
|||
return ret < 0 ? ret : din[1];
|
||||
}
|
||||
|
||||
/**
|
||||
* Set up a SPI slave for a particular device tree node
|
||||
*
|
||||
* This calls spi_setup_slave() with the correct bus number. Call
|
||||
* spi_free_slave() to free it later.
|
||||
*
|
||||
* @param blob: Device tree blob
|
||||
* @param slave_node: Slave node to use
|
||||
* @param spi_node: SPI peripheral node to use
|
||||
* @return pointer to new spi_slave structure
|
||||
*/
|
||||
struct spi_slave *spi_setup_slave_fdt(const void *blob, int slave_node,
|
||||
int spi_node);
|
||||
#ifdef CONFIG_DM_SPI
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue