Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=adafdf6a4e45f2d1051e10aebe13025e89dbdf6d
Commit:     adafdf6a4e45f2d1051e10aebe13025e89dbdf6d
Parent:     6eade8ff461fdf13ec6780602eb5618e0bdaa972
Author:     Ingo Molnar <[EMAIL PROTECTED]>
AuthorDate: Wed Jan 30 13:34:08 2008 +0100
Committer:  Ingo Molnar <[EMAIL PROTECTED]>
CommitDate: Wed Jan 30 13:34:08 2008 +0100

    x86: ioremap KERN_INFO
    
    Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
---
 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 6a9a141..ac9ab20 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();
        }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to