From: Li Zetao Date: Thu, 3 Aug 2023 03:32:35 +0000 (+0800) Subject: dmaengine: xilinx: xdma: Use resource_size() in xdma_probe() X-Git-Tag: v6.7-rc1~73^2~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=90a6c030f506585f484a9804aafe29cb42b93697;p=thirdparty%2Fkernel%2Flinux.git dmaengine: xilinx: xdma: Use resource_size() in xdma_probe() There is a warning reported by coccinelle: ./drivers/dma/xilinx/xdma.c:888:22-25: ERROR: Missing resource_size with res Use resource_size() on resource object instead of explicit computation. Signed-off-by: Li Zetao Link: https://lore.kernel.org/r/20230803033235.3049137-1-lizetao1@huawei.com Signed-off-by: Vinod Koul --- diff --git a/drivers/dma/xilinx/xdma.c b/drivers/dma/xilinx/xdma.c index 459e7b9838ed5..78a8eef5dcf7b 100644 --- a/drivers/dma/xilinx/xdma.c +++ b/drivers/dma/xilinx/xdma.c @@ -883,7 +883,7 @@ static int xdma_probe(struct platform_device *pdev) goto failed; } xdev->irq_start = res->start; - xdev->irq_num = res->end - res->start + 1; + xdev->irq_num = resource_size(res); res = platform_get_resource(pdev, IORESOURCE_MEM, 0); if (!res) {