Commit 4f4319a0 authored by Borislav Petkov's avatar Borislav Petkov Committed by Ingo Molnar

x86/ioremap: Correct function name output

Infact, let the compiler enter the function name so that there
are no discrepancies.
Signed-off-by: default avatarBorislav Petkov <bp@suse.de>
Link: http://lkml.kernel.org/r/1372369996-20556-1-git-send-email-bp@alien8.deSigned-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent d5c78673
...@@ -501,15 +501,15 @@ __early_ioremap(resource_size_t phys_addr, unsigned long size, pgprot_t prot) ...@@ -501,15 +501,15 @@ __early_ioremap(resource_size_t phys_addr, unsigned long size, pgprot_t prot)
} }
if (slot < 0) { if (slot < 0) {
printk(KERN_INFO "early_iomap(%08llx, %08lx) not found slot\n", printk(KERN_INFO "%s(%08llx, %08lx) not found slot\n",
(u64)phys_addr, size); __func__, (u64)phys_addr, size);
WARN_ON(1); WARN_ON(1);
return NULL; return NULL;
} }
if (early_ioremap_debug) { if (early_ioremap_debug) {
printk(KERN_INFO "early_ioremap(%08llx, %08lx) [%d] => ", printk(KERN_INFO "%s(%08llx, %08lx) [%d] => ",
(u64)phys_addr, size, slot); __func__, (u64)phys_addr, size, slot);
dump_stack(); dump_stack();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment