[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <fcc6e54f56089d2204ca9aff79ac769a62b3adcb.camel@pengutronix.de>
Date: Mon, 16 Sep 2019 16:30:25 +0200
From: Lucas Stach <l.stach@...gutronix.de>
To: Philipp Puschmann <philipp.puschmann@...ix.com>,
linux-kernel@...r.kernel.org
Cc: linux-serial@...r.kernel.org, shawnguo@...nel.org,
s.hauer@...gutronix.de, jslaby@...e.com, vkoul@...nel.org,
linux-imx@....com, kernel@...gutronix.de,
gregkh@...uxfoundation.org, dmaengine@...r.kernel.org,
dan.j.williams@...el.com, festevam@...il.com,
linux-arm-kernel@...ts.infradead.org
Subject: Re: [PATCH 4/4] dmaengine: imx-sdma: drop redundant variable
On Mi, 2019-09-11 at 16:49 +0200, Philipp Puschmann wrote:
> In sdma_prep_dma_cyclic buf is redundant. Drop it.
>
> Signed-off-by: Philipp Puschmann <philipp.puschmann@...ix.com>
Reviewed-by: Lucas Stach <l.stach@...gutronix.de>
> ---
> drivers/dma/imx-sdma.c | 7 ++-----
> 1 file changed, 2 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c
> index 6a5a84504858..5b6beeee9f0e 100644
> --- a/drivers/dma/imx-sdma.c
> +++ b/drivers/dma/imx-sdma.c
> @@ -1544,7 +1544,7 @@ static struct dma_async_tx_descriptor
> *sdma_prep_dma_cyclic(
> struct sdma_engine *sdma = sdmac->sdma;
> int num_periods = buf_len / period_len;
> int channel = sdmac->channel;
> - int i = 0, buf = 0;
> + int i;
> struct sdma_desc *desc;
>
> dev_dbg(sdma->dev, "%s channel: %d\n", __func__, channel);
> @@ -1565,7 +1565,7 @@ static struct dma_async_tx_descriptor
> *sdma_prep_dma_cyclic(
> goto err_bd_out;
> }
>
> - while (buf < buf_len) {
> + for (i = 0; i < num_periods; i++) {
> struct sdma_buffer_descriptor *bd = &desc->bd[i];
> int param;
>
> @@ -1592,9 +1592,6 @@ static struct dma_async_tx_descriptor
> *sdma_prep_dma_cyclic(
> bd->mode.status = param;
>
> dma_addr += period_len;
> - buf += period_len;
> -
> - i++;
> }
>
> return vchan_tx_prep(&sdmac->vc, &desc->vd, flags);
Powered by blists - more mailing lists