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

Configure Feed

Select the types of activity you want to include in your feed.

dmaengine: ste_dma40: use correct print specfier for resource_size_t

We should use %pR for printing resource_size_t, so update that fixing
the warning:

drivers/dma/ste_dma40.c:3556:25: warning: format specifies type 'unsigned int'
but the argument has type 'resource_size_t' (aka 'unsigned long long') [-Wformat]

Reported-by: kernel test robot <lkp@intel.com>
Fixes: 5a1a3b9c19dd ("dmaengine: ste_dma40: Get LCPA SRAM from SRAM node")
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Link: https://lore.kernel.org/r/20230517064434.141091-1-vkoul@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>

+2 -2
+2 -2
drivers/dma/ste_dma40.c
··· 3542 3542 } 3543 3543 base->lcpa_size = resource_size(&res_lcpa); 3544 3544 base->phy_lcpa = res_lcpa.start; 3545 - dev_info(dev, "found LCPA SRAM at 0x%08x, size 0x%08x\n", 3546 - (u32)base->phy_lcpa, base->lcpa_size); 3545 + dev_info(dev, "found LCPA SRAM at 0x%08x, size %pR\n", 3546 + (u32)base->phy_lcpa, &base->lcpa_size); 3547 3547 3548 3548 /* We make use of ESRAM memory for this. */ 3549 3549 val = readl(base->virtbase + D40_DREG_LCPA);