]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - include/spi.h
dfu: Fix up the Kconfig mess
[people/ms/u-boot.git] / include / spi.h
index b2a80a5609603a72d87278f5ff25f2f218e36cf2..f5bac8d002ad03bfc03abd8ef95fe8e6f3b9bc58 100644 (file)
@@ -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
 
 /**