dmaengine: mcf-edma: avoid warning for wrong pointer cast
authorAngelo Dureghello <angelo@sysam.it>
Fri, 14 Sep 2018 19:13:48 +0000 (21:13 +0200)
committerVinod Koul <vkoul@kernel.org>
Tue, 18 Sep 2018 19:15:45 +0000 (12:15 -0700)
This patch fixes the following compilation warning
reported during x86_64 allmodconfig build:

  drivers/dma/mcf-edma.c: In function 'mcf_edma_filter_fn':
  drivers/dma/mcf-edma.c:296:33: warning: cast from pointer to
integer of different size [-Wpointer-to-int-cast]
        return (mcf_chan->slave_id == (u32)param);

Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Angelo Dureghello <angelo@sysam.it>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/mcf-edma.c

index 4d30d5302649faa8859c07aecfdf636e60208264..5de1b07eddff4912a7506e1e5666878bd57bbb52 100644 (file)
@@ -293,7 +293,7 @@ bool mcf_edma_filter_fn(struct dma_chan *chan, void *param)
        if (chan->device->dev->driver == &mcf_edma_driver.driver) {
                struct fsl_edma_chan *mcf_chan = to_fsl_edma_chan(chan);
 
-               return (mcf_chan->slave_id == (u32)param);
+               return (mcf_chan->slave_id == (uintptr_t)param);
        }
 
        return false;