aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma
diff options
context:
space:
mode:
authorVinod Koul <vkoul@kernel.org>2019-01-20 11:42:44 +0530
committerVinod Koul <vkoul@kernel.org>2019-01-20 11:42:44 +0530
commitda5035f3773632a7b11a2dc8ca15291b8e2817df (patch)
tree79058a8ab38ea5e4b10f46ce43b315d3dfb1d6c6 /drivers/dma
parentdmaengine: imx-dma: fix warning comparison of distinct pointer types (diff)
downloadlinux-dev-da5035f3773632a7b11a2dc8ca15291b8e2817df.tar.xz
linux-dev-da5035f3773632a7b11a2dc8ca15291b8e2817df.zip
dmaengine: imx-dma: change variable 'now' type to size_t
now is used to keep size and it is better to change the variable type to size_t Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma')
-rw-r--r--drivers/dma/imx-dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/imx-dma.c b/drivers/dma/imx-dma.c
index fa3ef43fe314..aba1380c3321 100644
--- a/drivers/dma/imx-dma.c
+++ b/drivers/dma/imx-dma.c
@@ -283,7 +283,7 @@ static inline int imxdma_sg_next(struct imxdma_desc *d)
struct imxdma_channel *imxdmac = to_imxdma_chan(d->desc.chan);
struct imxdma_engine *imxdma = imxdmac->imxdma;
struct scatterlist *sg = d->sg;
- unsigned long now;
+ size_t now;
now = min_t(size_t, d->len, sg_dma_len(sg));
if (d->len != IMX_DMA_LENGTH_LOOP)