mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
mm/early_ioremap.c: use %pa to print resource_size_t variables
%pa takes into consideration the special types such as resource_size_t. Use this specifier %instead of explicit casting. Link: http://lkml.kernel.org/r/20191209165413.56263-1-andriy.shevchenko@linux.intel.com Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: David Hildenbrand <david@redhat.com> Reviewed-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
3e21d9a501
commit
7b69d79f94
1 changed files with 4 additions and 4 deletions
|
@ -121,8 +121,8 @@ __early_ioremap(resource_size_t phys_addr, unsigned long size, pgprot_t prot)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (WARN(slot < 0, "%s(%08llx, %08lx) not found slot\n",
|
if (WARN(slot < 0, "%s(%pa, %08lx) not found slot\n",
|
||||||
__func__, (u64)phys_addr, size))
|
__func__, &phys_addr, size))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
/* Don't allow wraparound or zero size */
|
/* Don't allow wraparound or zero size */
|
||||||
|
@ -158,8 +158,8 @@ __early_ioremap(resource_size_t phys_addr, unsigned long size, pgprot_t prot)
|
||||||
--idx;
|
--idx;
|
||||||
--nrpages;
|
--nrpages;
|
||||||
}
|
}
|
||||||
WARN(early_ioremap_debug, "%s(%08llx, %08lx) [%d] => %08lx + %08lx\n",
|
WARN(early_ioremap_debug, "%s(%pa, %08lx) [%d] => %08lx + %08lx\n",
|
||||||
__func__, (u64)phys_addr, size, slot, offset, slot_virt[slot]);
|
__func__, &phys_addr, size, slot, offset, slot_virt[slot]);
|
||||||
|
|
||||||
prev_map[slot] = (void __iomem *)(offset + slot_virt[slot]);
|
prev_map[slot] = (void __iomem *)(offset + slot_virt[slot]);
|
||||||
return prev_map[slot];
|
return prev_map[slot];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue