diff options
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 3e96b3f9f..4b50bca88 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;  } |