diff options
| author | Marek Vasut <[email protected]> | 2025-10-31 23:43:42 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-02-13 10:38:33 -0600 |
| commit | 59fa20f729789d12e7815fede6f5b3fb280dcdc9 (patch) | |
| tree | e18771343eb11a3e453b021a4b28ef52d64a03dd /include | |
| parent | df5dd0bff4459e32bc574c7c9e30929b16544792 (diff) | |
spi: Squash spi_slave_of_to_plat() into spi_child_post_bind()
The spi_slave_of_to_plat() is called from one place, spi_child_post_bind().
Squash it into the later and remove the public declaration, make this
function local static. No functional change.
Signed-off-by: Marek Vasut <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/spi.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/spi.h b/include/spi.h index 2783200d663..95e7d5b1556 100644 --- a/include/spi.h +++ b/include/spi.h @@ -658,17 +658,6 @@ int spi_chip_select(struct udevice *slave); int spi_find_chip_select(struct udevice *bus, int cs, struct udevice **devp); /** - * spi_slave_of_to_plat() - decode standard SPI platform data - * - * This decodes the speed and mode for a slave from a device tree node - * - * @blob: Device tree blob - * @node: Node offset to read from - * @plat: Place to put the decoded information - */ -int spi_slave_of_to_plat(struct udevice *dev, struct dm_spi_slave_plat *plat); - -/** * spi_cs_info() - Check information on a chip select * * This checks a particular chip select on a bus to see if it has a device |
