projects
/
karo-tx-uboot.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge branch 'u-boot-imx/master' into 'u-boot-arm/master'
[karo-tx-uboot.git]
/
drivers
/
spi
/
mxc_spi.c
diff --git
a/drivers/spi/mxc_spi.c
b/drivers/spi/mxc_spi.c
index
20419e6
..
5bed858
100644
(file)
--- a/
drivers/spi/mxc_spi.c
+++ b/
drivers/spi/mxc_spi.c
@@
-409,7
+409,7
@@
struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
if (bus >= ARRAY_SIZE(spi_bases))
return NULL;
if (bus >= ARRAY_SIZE(spi_bases))
return NULL;
- mxcs =
calloc(sizeof(struct mxc_spi_slave), 1
);
+ mxcs =
spi_alloc_slave(struct mxc_spi_slave, bus, cs
);
if (!mxcs) {
puts("mxc_spi: SPI Slave not allocated !\n");
return NULL;
if (!mxcs) {
puts("mxc_spi: SPI Slave not allocated !\n");
return NULL;
@@
-425,8
+425,6
@@
struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
cs = ret;
cs = ret;
- mxcs->slave.bus = bus;
- mxcs->slave.cs = cs;
mxcs->base = spi_bases[bus];
ret = spi_cfg_mxc(mxcs, cs, max_hz, mode);
mxcs->base = spi_bases[bus];
ret = spi_cfg_mxc(mxcs, cs, max_hz, mode);