aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/timblogiw.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/timblogiw.c')
-rw-r--r--drivers/media/video/timblogiw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/timblogiw.c b/drivers/media/video/timblogiw.c
index c2fcab465df..fc611ebeb82 100644
--- a/drivers/media/video/timblogiw.c
+++ b/drivers/media/video/timblogiw.c
@@ -148,7 +148,7 @@ static void timblogiw_dma_cb(void *data)
148 148
149static bool timblogiw_dma_filter_fn(struct dma_chan *chan, void *filter_param) 149static bool timblogiw_dma_filter_fn(struct dma_chan *chan, void *filter_param)
150{ 150{
151 return chan->chan_id == (int)filter_param; 151 return chan->chan_id == (uintptr_t)filter_param;
152} 152}
153 153
154/* IOCTL functions */ 154/* IOCTL functions */
@@ -668,7 +668,7 @@ static int timblogiw_open(struct file *file)
668 668
669 /* find the DMA channel */ 669 /* find the DMA channel */
670 fh->chan = dma_request_channel(mask, timblogiw_dma_filter_fn, 670 fh->chan = dma_request_channel(mask, timblogiw_dma_filter_fn,
671 (void *)lw->pdata.dma_channel); 671 (void *)(uintptr_t)lw->pdata.dma_channel);
672 if (!fh->chan) { 672 if (!fh->chan) {
673 dev_err(&vdev->dev, "Failed to get DMA channel\n"); 673 dev_err(&vdev->dev, "Failed to get DMA channel\n");
674 kfree(fh); 674 kfree(fh);