Sfoglia il codice sorgente

x86/mm: Fix newly introduced printk format warnings

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Thomas Gleixner 10 anni fa
parent
commit
8a0a5da6d9
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      arch/x86/mm/ioremap.c

+ 2 - 2
arch/x86/mm/ioremap.c

@@ -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;
 	}