mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
x86/mm: Fix newly introduced printk format warnings
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
8c38de992b
commit
8a0a5da6d9
1 changed files with 2 additions and 2 deletions
|
@ -118,8 +118,8 @@ static void __iomem *__ioremap_caller(resource_size_t phys_addr,
|
|||
last_pfn = last_addr >> PAGE_SHIFT;
|
||||
if (walk_system_ram_range(pfn, last_pfn - pfn + 1, NULL,
|
||||
__ioremap_check_ram) == 1) {
|
||||
WARN_ONCE(1, "ioremap on RAM at 0x%llx - 0x%llx\n",
|
||||
phys_addr, last_addr);
|
||||
WARN_ONCE(1, "ioremap on RAM at %pa - %pa\n",
|
||||
&phys_addr, &last_addr);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue