* [PATCH 1/1] powerpc/traps/e500: fix misleading error output
@ 2014-06-17 13:30 ` Wladislav Wiebe
0 siblings, 0 replies; 2+ messages in thread
From: Wladislav Wiebe @ 2014-06-17 13:30 UTC (permalink / raw)
To: linuxppc-dev, benh, paulus, scottwood, mikey, mahesh, michael,
anton, r65777, haokexin
Cc: wladislav.kw, linux-kernel
In machine_check_e500 exception handler is a wrong indication
in case of MCSR_BUS_WBERR - so print "Write" instead of "Read".
Signed-off-by: Wladislav Wiebe <wladislav.kw@gmail.com>
---
arch/powerpc/kernel/traps.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/powerpc/kernel/traps.c b/arch/powerpc/kernel/traps.c
index 239f1cd..cb9cfe4 100644
--- a/arch/powerpc/kernel/traps.c
+++ b/arch/powerpc/kernel/traps.c
@@ -609,7 +609,7 @@ int machine_check_e500(struct pt_regs *regs)
if (reason & MCSR_BUS_RBERR)
printk("Bus - Read Data Bus Error\n");
if (reason & MCSR_BUS_WBERR)
- printk("Bus - Read Data Bus Error\n");
+ printk("Bus - Write Data Bus Error\n");
if (reason & MCSR_BUS_IPERR)
printk("Bus - Instruction Parity Error\n");
if (reason & MCSR_BUS_RPERR)
--
1.7.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH 1/1] powerpc/traps/e500: fix misleading error output
@ 2014-06-17 13:30 ` Wladislav Wiebe
0 siblings, 0 replies; 2+ messages in thread
From: Wladislav Wiebe @ 2014-06-17 13:30 UTC (permalink / raw)
To: linuxppc-dev, benh, paulus, scottwood, mikey, mahesh, michael,
anton, r65777, haokexin
Cc: linux-kernel, wladislav.kw
In machine_check_e500 exception handler is a wrong indication
in case of MCSR_BUS_WBERR - so print "Write" instead of "Read".
Signed-off-by: Wladislav Wiebe <wladislav.kw@gmail.com>
---
arch/powerpc/kernel/traps.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/powerpc/kernel/traps.c b/arch/powerpc/kernel/traps.c
index 239f1cd..cb9cfe4 100644
--- a/arch/powerpc/kernel/traps.c
+++ b/arch/powerpc/kernel/traps.c
@@ -609,7 +609,7 @@ int machine_check_e500(struct pt_regs *regs)
if (reason & MCSR_BUS_RBERR)
printk("Bus - Read Data Bus Error\n");
if (reason & MCSR_BUS_WBERR)
- printk("Bus - Read Data Bus Error\n");
+ printk("Bus - Write Data Bus Error\n");
if (reason & MCSR_BUS_IPERR)
printk("Bus - Instruction Parity Error\n");
if (reason & MCSR_BUS_RPERR)
--
1.7.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-06-17 13:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-17 13:30 [PATCH 1/1] powerpc/traps/e500: fix misleading error output Wladislav Wiebe
2014-06-17 13:30 ` Wladislav Wiebe
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.