mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-13 08:39:52 +00:00
mtd: rawnand: jz4740: Use the proper format specifier to print chipnr
In jz_nand_detect_bank(), chipnr is a size_t argument. Use %zu instead of %i when printing it. Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
This commit is contained in:
parent
b8f0fadab2
commit
72b77bb018
@ -355,7 +355,7 @@ static int jz_nand_detect_bank(struct platform_device *pdev,
|
||||
mtd->size += chip->chipsize;
|
||||
}
|
||||
|
||||
dev_info(&pdev->dev, "Found chip %i on bank %i\n", chipnr, bank);
|
||||
dev_info(&pdev->dev, "Found chip %zu on bank %i\n", chipnr, bank);
|
||||
return 0;
|
||||
|
||||
notfound_id:
|
||||
|
Loading…
x
Reference in New Issue
Block a user