]> Git Repo - linux.git/commitdiff
[MIPS] Use KERN_DEBUG to log the SDBBP messages
authorChris Dearman <[email protected]>
Fri, 30 Jun 2006 11:32:37 +0000 (12:32 +0100)
committerRalf Baechle <[email protected]>
Thu, 13 Jul 2006 20:25:57 +0000 (21:25 +0100)
Signed-off-by: Chris Dearman <[email protected]>
Signed-off-by: Ralf Baechle <[email protected]>
arch/mips/kernel/traps.c

index 7cbcbd9a95408560c0dbe01e67c7f421780467d1..e262fb8330f41bf263b49ec53bdea3c5cc5126e1 100644 (file)
@@ -978,10 +978,10 @@ void ejtag_exception_handler(struct pt_regs *regs)
        unsigned long depc, old_epc;
        unsigned int debug;
 
-       printk("SDBBP EJTAG debug exception - not handled yet, just ignored!\n");
+       printk(KERN_DEBUG "SDBBP EJTAG debug exception - not handled yet, just ignored!\n");
        depc = read_c0_depc();
        debug = read_c0_debug();
-       printk("c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug);
+       printk(KERN_DEBUG "c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug);
        if (debug & 0x80000000) {
                /*
                 * In branch delay slot.
@@ -999,7 +999,7 @@ void ejtag_exception_handler(struct pt_regs *regs)
        write_c0_depc(depc);
 
 #if 0
-       printk("\n\n----- Enable EJTAG single stepping ----\n\n");
+       printk(KERN_DEBUG "\n\n----- Enable EJTAG single stepping ----\n\n");
        write_c0_debug(debug | 0x100);
 #endif
 }
This page took 0.056929 seconds and 4 git commands to generate.