diff options
author | Simon Glass <sjg@chromium.org> | 2013-03-18 19:23:40 +0000 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2013-03-19 08:45:36 -0700 |
commit | d3504fee73ec626117427afa08116d1dde21ba9d (patch) | |
tree | 04b3d508a3ce15c1e67baf76cf964aedf3c559a7 /drivers/spi/xilinx_spi.c | |
parent | ba6c3ce9bd0ac572592dc909878117dce219c564 (diff) | |
download | u-boot-imx-d3504fee73ec626117427afa08116d1dde21ba9d.zip u-boot-imx-d3504fee73ec626117427afa08116d1dde21ba9d.tar.gz u-boot-imx-d3504fee73ec626117427afa08116d1dde21ba9d.tar.bz2 |
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/xilinx_spi.c')
-rw-r--r-- | drivers/spi/xilinx_spi.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/spi/xilinx_spi.c b/drivers/spi/xilinx_spi.c index db01cc2..a82b056 100644 --- a/drivers/spi/xilinx_spi.c +++ b/drivers/spi/xilinx_spi.c @@ -85,14 +85,12 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs, return NULL; } - xilspi = malloc(sizeof(*xilspi)); + xilspi = spi_alloc_slave(struct xilinx_spi_slave, bus, cs); if (!xilspi) { printf("XILSPI error: %s: malloc of SPI structure failed\n", __func__); return NULL; } - xilspi->slave.bus = bus; - xilspi->slave.cs = cs; xilspi->regs = (struct xilinx_spi_reg *)xilinx_spi_base_list[bus]; xilspi->freq = max_hz; xilspi->mode = mode; |