aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mm
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-01-30 07:34:08 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:34:08 -0500
commitadafdf6a4e45f2d1051e10aebe13025e89dbdf6d (patch)
tree830f7f11dc421c7f6f2adffd35609fd0dfbc864c /arch/x86/mm
parent6eade8ff461fdf13ec6780602eb5618e0bdaa972 (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/x86/mm')
-rw-r--r--arch/x86/mm/ioremap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c
index 6a9a1418bc98..ac9ab20d8092 100644
--- a/arch/x86/mm/ioremap.c
+++ b/arch/x86/mm/ioremap.c
@@ -293,7 +293,7 @@ void __init early_ioremap_init(void)
293 unsigned long *pgd; 293 unsigned long *pgd;
294 294
295 if (early_ioremap_debug) 295 if (early_ioremap_debug)
296 printk(KERN_DEBUG "early_ioremap_init()\n"); 296 printk(KERN_INFO "early_ioremap_init()\n");
297 297
298 pgd = early_ioremap_pgd(fix_to_virt(FIX_BTMAP_BEGIN)); 298 pgd = early_ioremap_pgd(fix_to_virt(FIX_BTMAP_BEGIN));
299 *pgd = __pa(bm_pte) | _PAGE_TABLE; 299 *pgd = __pa(bm_pte) | _PAGE_TABLE;
@@ -322,7 +322,7 @@ void __init early_ioremap_clear(void)
322 unsigned long *pgd; 322 unsigned long *pgd;
323 323
324 if (early_ioremap_debug) 324 if (early_ioremap_debug)
325 printk(KERN_DEBUG "early_ioremap_clear()\n"); 325 printk(KERN_INFO "early_ioremap_clear()\n");
326 326
327 pgd = early_ioremap_pgd(fix_to_virt(FIX_BTMAP_BEGIN)); 327 pgd = early_ioremap_pgd(fix_to_virt(FIX_BTMAP_BEGIN));
328 *pgd = 0; 328 *pgd = 0;
@@ -408,7 +408,7 @@ void __init *early_ioremap(unsigned long phys_addr, unsigned long size)
408 408
409 nesting = early_ioremap_nested; 409 nesting = early_ioremap_nested;
410 if (early_ioremap_debug) { 410 if (early_ioremap_debug) {
411 printk(KERN_DEBUG "early_ioremap(%08lx, %08lx) [%d] => ", 411 printk(KERN_INFO "early_ioremap(%08lx, %08lx) [%d] => ",
412 phys_addr, size, nesting); 412 phys_addr, size, nesting);
413 dump_stack(); 413 dump_stack();
414 } 414 }
@@ -470,7 +470,7 @@ void __init early_iounmap(void *addr, unsigned long size)
470 WARN_ON(nesting < 0); 470 WARN_ON(nesting < 0);
471 471
472 if (early_ioremap_debug) { 472 if (early_ioremap_debug) {
473 printk(KERN_DEBUG "early_iounmap(%p, %08lx) [%d]\n", addr, 473 printk(KERN_INFO "early_iounmap(%p, %08lx) [%d]\n", addr,
474 size, nesting); 474 size, nesting);
475 dump_stack(); 475 dump_stack();
476 } 476 }