microblaze: Remove while(1) loop from show_regs function
authorMichal Simek <monstr@monstr.eu>
Thu, 16 Apr 2009 08:41:45 +0000 (10:41 +0200)
committerMichal Simek <monstr@monstr.eu>
Thu, 23 Apr 2009 14:09:16 +0000 (16:09 +0200)
I removed it because of show_regs can't break die function.
If process/kernel failed, die (do_exit) function resolve it.

Signed-off-by: Michal Simek <monstr@monstr.eu>
arch/microblaze/kernel/process.c

index 436f26c..bdc8b2c 100644 (file)
@@ -37,8 +37,6 @@ void show_regs(struct pt_regs *regs)
                                regs->r29, regs->r30, regs->r31, regs->pc);
        printk(KERN_INFO " msr=%08lX, ear=%08lX, esr=%08lX, fsr=%08lX\n",
                                regs->msr, regs->ear, regs->esr, regs->fsr);
-       while (1)
-               ;
 }
 
 void (*pm_idle)(void);