summaryrefslogtreecommitdiff
path: root/arch/microblaze/kernel
diff options
context:
space:
mode:
authorMichal Simek <monstr@monstr.eu>2009-04-16 10:41:45 +0200
committerMichal Simek <monstr@monstr.eu>2009-04-23 16:09:16 +0200
commit51eb6dc9ca40d086c102bb868ba7f29f33a30f6f (patch)
tree0676af38d437cd4978623301e35f09d8364aa711 /arch/microblaze/kernel
parentf2ec24fd42d52a52829070b5e31d9a17d145df30 (diff)
microblaze: Remove while(1) loop from show_regs function
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>
Diffstat (limited to 'arch/microblaze/kernel')
-rw-r--r--arch/microblaze/kernel/process.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/microblaze/kernel/process.c b/arch/microblaze/kernel/process.c
index 436f26ccbfa..bdc8b2c6c57 100644
--- a/arch/microblaze/kernel/process.c
+++ b/arch/microblaze/kernel/process.c
@@ -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);