* [PATCH] frv: duplicate output_buffer of E03
@ 2009-02-12 13:05 Roel Kluin
0 siblings, 0 replies; only message in thread
From: Roel Kluin @ 2009-02-12 13:05 UTC (permalink / raw)
To: David Howells; +Cc: Andrew Morton, lkml
In the case of an error, output_buffer gets an E0X value. E03 was set in two
different error conditions while E02 was missing, this occurred in two sections.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
---
diff --git a/arch/frv/kernel/gdb-stub.c b/arch/frv/kernel/gdb-stub.c
index 7ca8a6b..4411c24 100644
--- a/arch/frv/kernel/gdb-stub.c
+++ b/arch/frv/kernel/gdb-stub.c
@@ -1880,7 +1880,7 @@ void gdbstub(int sigval)
}
if (temp >= 5) {
- gdbstub_strcpy(output_buffer,"E03");
+ gdbstub_strcpy(output_buffer,"E02");
break;
}
@@ -1908,7 +1908,7 @@ void gdbstub(int sigval)
}
if (temp >= 5) {
- gdbstub_strcpy(output_buffer,"E03");
+ gdbstub_strcpy(output_buffer,"E02");
break;
}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-02-12 13:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-12 13:05 [PATCH] frv: duplicate output_buffer of E03 Roel Kluin
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.