summaryrefslogtreecommitdiff
path: root/drivers/spi/soft_spi.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2013-03-18 23:23:40 +0400
committerSimon Glass <sjg@chromium.org>2013-03-19 19:45:36 +0400
commitd3504fee73ec626117427afa08116d1dde21ba9d (patch)
tree04b3d508a3ce15c1e67baf76cf964aedf3c559a7 /drivers/spi/soft_spi.c
parentba6c3ce9bd0ac572592dc909878117dce219c564 (diff)
downloadu-boot-d3504fee73ec626117427afa08116d1dde21ba9d.tar.xz
spi: Use spi_alloc_slave() in each SPI driver
Rather than each driver having its own way to allocate a SPI slave, use the new allocation function everywhere. This will make it easier to extend the interface without breaking drivers. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/spi/soft_spi.c')
-rw-r--r--drivers/spi/soft_spi.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/spi/soft_spi.c b/drivers/spi/soft_spi.c
index 13df8cb7de..a1b84b6e37 100644
--- a/drivers/spi/soft_spi.c
+++ b/drivers/spi/soft_spi.c
@@ -73,12 +73,10 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
if (!spi_cs_is_valid(bus, cs))
return NULL;
- ss = malloc(sizeof(struct soft_spi_slave));
+ ss = spi_alloc_slave(struct soft_spi_slave, bus, cs);
if (!ss)
return NULL;
- ss->slave.bus = bus;
- ss->slave.cs = cs;
ss->mode = mode;
/* TODO: Use max_hz to limit the SCK rate */