diff options
author | Simon Glass <sjg@chromium.org> | 2014-11-11 10:46:22 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-11-22 10:16:47 +0100 |
commit | ff56bba2d6952176a826bddcd9baf84f61b419a3 (patch) | |
tree | ef05d1506ddb26b4d0f97d47525722fde585d30f /drivers/mtd/spi | |
parent | e33dc221f45ca501319f5aebd1c88574238261be (diff) | |
download | talos-obmc-uboot-ff56bba2d6952176a826bddcd9baf84f61b419a3.tar.gz talos-obmc-uboot-ff56bba2d6952176a826bddcd9baf84f61b419a3.zip |
dm: spi: Correct handling of SPI chip selects in sandbox
This code was not updated when the chip select handling was adjusted. Fix
it to call the correct function.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Jagannadha Sutradharudu Teki <jagannadh.teki@gmail.com>
Acked-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'drivers/mtd/spi')
-rw-r--r-- | drivers/mtd/spi/sandbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/spi/sandbox.c b/drivers/mtd/spi/sandbox.c index 1cf2f98310..fecf6d4bc3 100644 --- a/drivers/mtd/spi/sandbox.c +++ b/drivers/mtd/spi/sandbox.c @@ -602,7 +602,7 @@ static int sandbox_sf_bind_bus_cs(struct sandbox_state *state, int busnum, spec, ret); return ret; } - ret = device_find_child_by_seq(bus, cs, true, &slave); + ret = spi_find_chip_select(bus, cs, &slave); if (!ret) { printf("Chip select %d already exists for spec '%s'\n", cs, spec); |