diff options
author | Michal Simek <monstr@monstr.eu> | 2009-04-16 12:41:45 +0400 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2009-04-23 18:09:16 +0400 |
commit | 51eb6dc9ca40d086c102bb868ba7f29f33a30f6f (patch) | |
tree | 0676af38d437cd4978623301e35f09d8364aa711 /arch/microblaze/kernel | |
parent | f2ec24fd42d52a52829070b5e31d9a17d145df30 (diff) | |
download | linux-51eb6dc9ca40d086c102bb868ba7f29f33a30f6f.tar.xz |
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.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/microblaze/kernel/process.c b/arch/microblaze/kernel/process.c index 436f26ccbfa9..bdc8b2c6c574 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); |