[U-Boot] [U-Boot, 1/2] spi: tegra114_spi: Convert to use spi_alloc_slave()

Jagan Teki jagannadh.teki at gmail.com
Thu Jun 13 19:33:23 CEST 2013


On 13-06-2013 13:47, Axel Lin wrote:
> Signed-off-by: Axel Lin <axel.lin at ingics.com>
> Acked-by: Marek Vasut <marex at denx.de>
> Reviewed-by: Jagannadha Sutradharudu Teki <jagannadh.teki at gmail.com>
>
> ---
> Forgot to CC mailing list, so here is a resend.
>   drivers/spi/tegra114_spi.c | 4 +---
>   1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/spi/tegra114_spi.c b/drivers/spi/tegra114_spi.c
> index b11a0a1..4d2af48 100644
> --- a/drivers/spi/tegra114_spi.c
> +++ b/drivers/spi/tegra114_spi.c
> @@ -152,13 +152,11 @@ struct spi_slave *tegra114_spi_setup_slave(unsigned int bus, unsigned int cs,
>   		return NULL;
>   	}
>
> -	spi = malloc(sizeof(struct tegra_spi_slave));
> +	spi = spi_alloc_slave(struct tegra_spi_slave, bus, cs);
>   	if (!spi) {
>   		printf("SPI error: malloc of SPI structure failed\n");
>   		return NULL;
>   	}
> -	spi->slave.bus = bus;
> -	spi->slave.cs = cs;
>   	spi->ctrl = &spi_ctrls[bus];
>   	if (!spi->ctrl) {
>   		printf("SPI error: could not find controller for bus %d\n",
>

Applied to u-boot-spi/master

--
Thanks,
Jagan.


More information about the U-Boot mailing list