diff options
author | Simon Glass | 2013-03-18 19:23:40 +0000 |
---|---|---|
committer | Simon Glass | 2013-03-19 08:45:36 -0700 |
commit | d3504fee73ec626117427afa08116d1dde21ba9d (patch) | |
tree | 04b3d508a3ce15c1e67baf76cf964aedf3c559a7 /drivers/spi/mpc52xx_spi.c | |
parent | ba6c3ce9bd0ac572592dc909878117dce219c564 (diff) |
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/mpc52xx_spi.c')
-rw-r--r-- | drivers/spi/mpc52xx_spi.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/spi/mpc52xx_spi.c b/drivers/spi/mpc52xx_spi.c index 3e96b3f9f3b..4b50bca880a 100644 --- a/drivers/spi/mpc52xx_spi.c +++ b/drivers/spi/mpc52xx_spi.c @@ -48,13 +48,10 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs, { struct spi_slave *slave; - slave = malloc(sizeof(struct spi_slave)); + slave = spi_alloc_slave_base(bus, cs); if (!slave) return NULL; - slave->bus = bus; - slave->cs = cs; - return slave; } |