summaryrefslogtreecommitdiffstats
path: root/drivers/spi/cf_qspi.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2013-03-18 19:23:40 +0000
committerSimon Glass <sjg@chromium.org>2013-03-19 08:45:36 -0700
commitd3504fee73ec626117427afa08116d1dde21ba9d (patch)
tree04b3d508a3ce15c1e67baf76cf964aedf3c559a7 /drivers/spi/cf_qspi.c
parentba6c3ce9bd0ac572592dc909878117dce219c564 (diff)
downloadblackbird-obmc-uboot-d3504fee73ec626117427afa08116d1dde21ba9d.tar.gz
blackbird-obmc-uboot-d3504fee73ec626117427afa08116d1dde21ba9d.zip
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/cf_qspi.c')
-rw-r--r--drivers/spi/cf_qspi.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/spi/cf_qspi.c b/drivers/spi/cf_qspi.c
index 72dd1a520d..a37ac4e526 100644
--- a/drivers/spi/cf_qspi.c
+++ b/drivers/spi/cf_qspi.c
@@ -120,13 +120,11 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
if (!spi_cs_is_valid(bus, cs))
return NULL;
- dev = malloc(sizeof(struct cf_qspi_slave));
+ dev = spi_alloc_slave(struct cf_qspi_slave, bus, cs);
if (!dev)
return NULL;
/* Initialize to known value */
- dev->slave.bus = bus;
- dev->slave.cs = cs;
dev->regs = (qspi_t *)MMAP_QSPI;
dev->qmr = 0;
dev->qwr = 0;
OpenPOWER on IntegriCloud