Commit 9cb2181f authored by Andrew Morton's avatar Andrew Morton Committed by james toy

ERROR: space required after that ',' (ctx:VxV)

#23: FILE: arch/frv/kernel/gdb-stub.c:1883:
+				gdbstub_strcpy(output_buffer,"E02");
 				                            ^

ERROR: space required after that ',' (ctx:VxV)
#32: FILE: arch/frv/kernel/gdb-stub.c:1911:
+				gdbstub_strcpy(output_buffer,"E02");
 				                            ^

total: 2 errors, 0 warnings, 16 lines checked

./patches/frv-duplicate-output_buffer-of-e03.patch has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.

Please run checkpatch prior to sending patches

Cc: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent fb7adf2f
......@@ -1880,7 +1880,7 @@ void gdbstub(int sigval)
}
if (temp >= 5) {
gdbstub_strcpy(output_buffer,"E02");
gdbstub_strcpy(output_buffer, "E02");
break;
}
......@@ -1908,7 +1908,7 @@ void gdbstub(int sigval)
}
if (temp >= 5) {
gdbstub_strcpy(output_buffer,"E02");
gdbstub_strcpy(output_buffer, "E02");
break;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment