]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
dm: spi: Move slave details to child platdata
authorSimon Glass <sjg@chromium.org>
Sun, 25 Jan 2015 15:27:12 +0000 (08:27 -0700)
committerSimon Glass <sjg@chromium.org>
Fri, 30 Jan 2015 00:09:56 +0000 (17:09 -0700)
commitd0cff03e187cc1de3d6b477b92c376aae27c95e8
tree28fe778799e181dac5adcf4d7ae847d28d6fef0d
parent440714eeb8938e9710d1b2bba17c6c0af7c2cf69
dm: spi: Move slave details to child platdata

At present we go through various contortions to store the SPI slave's chip
select in its private data. This only exists when the slave is active so
must be set up when it is probed. Until the device is probed we don't
actually know what chip select it will appear on.

However, now that we can support per-child platform data, we can use that
instead. This allows us to set up the chip select when the child is bound,
and avoid the messy contortions.

Unfortunately this is a fairly large change and it seems to be difficult to
break it down further.

Signed-off-by: Simon Glass <sjg@chromium.org>
drivers/misc/cros_ec_spi.c
drivers/mtd/spi/sandbox.c
drivers/mtd/spi/sf_probe.c
drivers/spi/soft_spi.c
drivers/spi/spi-uclass.c
include/spi.h
test/dm/spi.c