Skip to content

Commit

Permalink
dmaengine: ste_dma40: use correct print specfier for resource_size_t
Browse files Browse the repository at this point in the history
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 <[email protected]>
Fixes: 5a1a3b9 ("dmaengine: ste_dma40: Get LCPA SRAM from SRAM node")
Reviewed-by: Linus Walleij <[email protected]>
Signed-off-by: Vinod Koul <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Vinod Koul <[email protected]>
  • Loading branch information
vinodkoul committed May 18, 2023
1 parent 8d81d3a commit ef1e1c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/dma/ste_dma40.c
Original file line number Diff line number Diff line change
Expand Up @@ -3542,8 +3542,8 @@ static int __init d40_probe(struct platform_device *pdev)
}
base->lcpa_size = resource_size(&res_lcpa);
base->phy_lcpa = res_lcpa.start;
dev_info(dev, "found LCPA SRAM at 0x%08x, size 0x%08x\n",
(u32)base->phy_lcpa, base->lcpa_size);
dev_info(dev, "found LCPA SRAM at 0x%08x, size %pR\n",
(u32)base->phy_lcpa, &base->lcpa_size);

/* We make use of ESRAM memory for this. */
val = readl(base->virtbase + D40_DREG_LCPA);
Expand Down

0 comments on commit ef1e1c4

Please sign in to comment.