summaryrefslogtreecommitdiff
path: root/include/spi.h
diff options
context:
space:
mode:
authorMario Six <mario.six@gdsys.cc>2018-01-15 11:08:38 +0100
committerJagan Teki <jagan@amarulasolutions.com>2018-01-24 12:04:07 +0530
commit184fa1c8da54d3c5305b3e1975e284e01de68bea (patch)
treeec05d9f6b5706e315f227e919fd028e4c1dac963 /include/spi.h
parent74ea6e82f8f626c8c3098dea72f008e8ec0357f9 (diff)
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 'include/spi.h')
-rw-r--r--include/spi.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/spi.h b/include/spi.h
index b2a80a5609..f5bac8d002 100644
--- a/include/spi.h
+++ b/include/spi.h
@@ -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
/**