You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
powerpc/fsl_rio: Fix compile warnings
We we build with resource_size_t as a 64-bit quantity we get: arch/powerpc/sysdev/fsl_rio.c: In function 'fsl_rio_setup': arch/powerpc/sysdev/fsl_rio.c:1029: warning: format '%08x' expects type 'unsigned int', but argument 4 has type 'resource_size_t' arch/powerpc/sysdev/fsl_rio.c:1029: warning: format '%08x' expects type 'unsigned int', but argument 5 has type 'resource_size_t' Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
@@ -1026,8 +1026,7 @@ int fsl_rio_setup(struct of_device *dev)
|
||||
return -EFAULT;
|
||||
}
|
||||
dev_info(&dev->dev, "Of-device full name %s\n", dev->node->full_name);
|
||||
dev_info(&dev->dev, "Regs start 0x%08x size 0x%08x\n", regs.start,
|
||||
regs.end - regs.start + 1);
|
||||
dev_info(&dev->dev, "Regs: %pR\n", ®s);
|
||||
|
||||
dt_range = of_get_property(dev->node, "ranges", &rlen);
|
||||
if (!dt_range) {
|
||||
|
||||
Reference in New Issue
Block a user