diff options
| author | Tom Rini <trini@ti.com> | 2013-03-20 14:55:10 -0400 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-03-20 14:55:10 -0400 | 
| commit | 8b906a9f0b3fd0d4421e08c4fa62f61a01289611 (patch) | |
| tree | 049acc34fee9692c0c394b8d1697d97257c0a074 /drivers/spi/armada100_spi.c | |
| parent | 3c47f2f4871c345c20b9d986b11fec550ef6cc9f (diff) | |
| parent | 1e7133e99e27c4f02998e7eb87fa43424d48152b (diff) | |
| download | olio-uboot-2014.01-8b906a9f0b3fd0d4421e08c4fa62f61a01289611.tar.xz olio-uboot-2014.01-8b906a9f0b3fd0d4421e08c4fa62f61a01289611.zip | |
Merge branch 'spi' of git://git.denx.de/u-boot-x86
Diffstat (limited to 'drivers/spi/armada100_spi.c')
| -rw-r--r-- | drivers/spi/armada100_spi.c | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/drivers/spi/armada100_spi.c b/drivers/spi/armada100_spi.c index 7384c9cd2..afdbe0508 100644 --- a/drivers/spi/armada100_spi.c +++ b/drivers/spi/armada100_spi.c @@ -120,12 +120,10 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,  {  	struct armd_spi_slave *pss; -	pss = malloc(sizeof(*pss)); +	pss = spi_alloc_slave(struct armd_spi_slave, bus, cs);  	if (!pss)  		return NULL; -	pss->slave.bus = bus; -	pss->slave.cs = cs;  	pss->spi_reg = (struct ssp_reg *)SSP_REG_BASE(CONFIG_SYS_SSP_PORT);  	pss->cr0 = SSCR0_MOTO | SSCR0_DATASIZE(DEFAULT_WORD_LEN) | SSCR0_SSE; |