diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-01-30 13:34:08 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 13:34:08 +0100 |
commit | adafdf6a4e45f2d1051e10aebe13025e89dbdf6d (patch) | |
tree | 830f7f11dc421c7f6f2adffd35609fd0dfbc864c /arch | |
parent | 6eade8ff461fdf13ec6780602eb5618e0bdaa972 (diff) |
x86: ioremap KERN_INFO
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch')
-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 6a9a1418bc9..ac9ab20d809 100644 --- a/arch/x86/mm/ioremap.c +++ b/arch/x86/mm/ioremap.c @@ -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; @@ -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; @@ -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(); } @@ -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(); } |