Skip to content

Commit

Permalink
x86: ioremap KERN_INFO
Browse files Browse the repository at this point in the history
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Ingo Molnar committed Jan 30, 2008
1 parent 6eade8f commit adafdf6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arch/x86/mm/ioremap.c
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ void __init early_ioremap_init(void)
unsigned long *pgd;

if (early_ioremap_debug)
printk(KERN_DEBUG "early_ioremap_init()\n");
printk(KERN_INFO "early_ioremap_init()\n");

pgd = early_ioremap_pgd(fix_to_virt(FIX_BTMAP_BEGIN));
*pgd = __pa(bm_pte) | _PAGE_TABLE;
Expand Down Expand Up @@ -322,7 +322,7 @@ void __init early_ioremap_clear(void)
unsigned long *pgd;

if (early_ioremap_debug)
printk(KERN_DEBUG "early_ioremap_clear()\n");
printk(KERN_INFO "early_ioremap_clear()\n");

pgd = early_ioremap_pgd(fix_to_virt(FIX_BTMAP_BEGIN));
*pgd = 0;
Expand Down Expand Up @@ -408,7 +408,7 @@ void __init *early_ioremap(unsigned long phys_addr, unsigned long size)

nesting = early_ioremap_nested;
if (early_ioremap_debug) {
printk(KERN_DEBUG "early_ioremap(%08lx, %08lx) [%d] => ",
printk(KERN_INFO "early_ioremap(%08lx, %08lx) [%d] => ",
phys_addr, size, nesting);
dump_stack();
}
Expand Down Expand Up @@ -470,7 +470,7 @@ void __init early_iounmap(void *addr, unsigned long size)
WARN_ON(nesting < 0);

if (early_ioremap_debug) {
printk(KERN_DEBUG "early_iounmap(%p, %08lx) [%d]\n", addr,
printk(KERN_INFO "early_iounmap(%p, %08lx) [%d]\n", addr,
size, nesting);
dump_stack();
}
Expand Down

0 comments on commit adafdf6

Please sign in to comment.