X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=blobdiff_plain;f=drivers%2Fspi%2Fmxc_spi.c;h=5bed858787f610a9c9a46bb2214665a51d60a9e9;hp=20419e6bc6779fcad35b2abb562e1114a7e184ba;hb=8dc16cf9dd6196d99969d12741df186a61a2f9a3;hpb=0f1411bc8dade4472ca802f46f75714e67301bb0;ds=sidebyside diff --git a/drivers/spi/mxc_spi.c b/drivers/spi/mxc_spi.c index 20419e6bc6..5bed858787 100644 --- 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; - 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; @@ -425,8 +425,6 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs, cs = ret; - mxcs->slave.bus = bus; - mxcs->slave.cs = cs; mxcs->base = spi_bases[bus]; ret = spi_cfg_mxc(mxcs, cs, max_hz, mode);