Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dmaengine: iop-adma: Fix pointer cast warnings

drivers/dma/iop-adma.c: In function ‘iop_adma_alloc_chan_resources’:
drivers/dma/iop-adma.c:447:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
hw_desc = (char *) iop_chan->device->dma_desc_pool;
^
drivers/dma/iop-adma.c:449:4: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
(dma_addr_t) &hw_desc[idx * IOP_ADMA_SLOT_SIZE];
^
drivers/dma/iop-adma.c: In function ‘iop_adma_probe’:
drivers/dma/iop-adma.c:1301:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
(void *) adev->dma_desc_pool);

Use dma_addr_t for dma_desc_pool, and %pad to print dma_addr_t.

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Link: https://lore.kernel.org/r/20200818115101.55700-1-yuehaibing@huawei.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

YueHaibing and committed by
Vinod Koul
985d5137 7f35e279

+5 -6
+5 -6
drivers/dma/iop-adma.c
··· 416 416 static int iop_adma_alloc_chan_resources(struct dma_chan *chan) 417 417 { 418 418 char *hw_desc; 419 + dma_addr_t dma_desc; 419 420 int idx; 420 421 struct iop_adma_chan *iop_chan = to_iop_adma_chan(chan); 421 422 struct iop_adma_desc_slot *slot = NULL; ··· 445 444 INIT_LIST_HEAD(&slot->tx_list); 446 445 INIT_LIST_HEAD(&slot->chain_node); 447 446 INIT_LIST_HEAD(&slot->slot_node); 448 - hw_desc = (char *) iop_chan->device->dma_desc_pool; 449 - slot->async_tx.phys = 450 - (dma_addr_t) &hw_desc[idx * IOP_ADMA_SLOT_SIZE]; 447 + dma_desc = iop_chan->device->dma_desc_pool; 448 + slot->async_tx.phys = dma_desc + idx * IOP_ADMA_SLOT_SIZE; 451 449 slot->idx = idx; 452 450 453 451 spin_lock_bh(&iop_chan->lock); ··· 1296 1296 goto err_free_adev; 1297 1297 } 1298 1298 1299 - dev_dbg(&pdev->dev, "%s: allocated descriptor pool virt %p phys %p\n", 1300 - __func__, adev->dma_desc_pool_virt, 1301 - (void *) adev->dma_desc_pool); 1299 + dev_dbg(&pdev->dev, "%s: allocated descriptor pool virt %p phys %pad\n", 1300 + __func__, adev->dma_desc_pool_virt, &adev->dma_desc_pool); 1302 1301 1303 1302 adev->id = plat_data->hw_id; 1304 1303