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/sh_spi.c | |
| parent | ba6c3ce9bd0ac572592dc909878117dce219c564 (diff) | |
| download | olio-uboot-2014.01-d3504fee73ec626117427afa08116d1dde21ba9d.tar.xz olio-uboot-2014.01-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/sh_spi.c')
| -rw-r--r-- | drivers/spi/sh_spi.c | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/drivers/spi/sh_spi.c b/drivers/spi/sh_spi.c index e944b23c2..744afe329 100644 --- a/drivers/spi/sh_spi.c +++ b/drivers/spi/sh_spi.c @@ -103,12 +103,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 spi_slave)); +	ss = spi_alloc_slave(struct sh_spi, bus, cs);  	if (!ss)  		return NULL; -	ss->slave.bus = bus; -	ss->slave.cs = cs;  	ss->regs = (struct sh_spi_regs *)CONFIG_SH_SPI_BASE;  	/* SPI sycle stop */ |