diff options
| -rw-r--r-- | arch/x86/mm/ioremap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c index 9a1e6583910c..0215e2c563ef 100644 --- a/arch/x86/mm/ioremap.c +++ b/arch/x86/mm/ioremap.c | |||
| @@ -501,15 +501,15 @@ __early_ioremap(resource_size_t phys_addr, unsigned long size, pgprot_t prot) | |||
| 501 | } | 501 | } |
| 502 | 502 | ||
| 503 | if (slot < 0) { | 503 | if (slot < 0) { |
| 504 | printk(KERN_INFO "early_iomap(%08llx, %08lx) not found slot\n", | 504 | printk(KERN_INFO "%s(%08llx, %08lx) not found slot\n", |
| 505 | (u64)phys_addr, size); | 505 | __func__, (u64)phys_addr, size); |
| 506 | WARN_ON(1); | 506 | WARN_ON(1); |
| 507 | return NULL; | 507 | return NULL; |
| 508 | } | 508 | } |
| 509 | 509 | ||
| 510 | if (early_ioremap_debug) { | 510 | if (early_ioremap_debug) { |
| 511 | printk(KERN_INFO "early_ioremap(%08llx, %08lx) [%d] => ", | 511 | printk(KERN_INFO "%s(%08llx, %08lx) [%d] => ", |
| 512 | (u64)phys_addr, size, slot); | 512 | __func__, (u64)phys_addr, size, slot); |
| 513 | dump_stack(); | 513 | dump_stack(); |
| 514 | } | 514 | } |
| 515 | 515 | ||
