aboutsummaryrefslogtreecommitdiff
path: root/target/m68k/gdbstub.c
diff options
context:
space:
mode:
authorLucien Murray-Pitts <lucienmp.qemu@gmail.com>2019-06-07 08:41:25 +0900
committerLaurent Vivier <laurent@vivier.eu>2019-06-26 17:14:39 +0200
commit808d77bc5f878a666035d478480b8ed229bd49fe (patch)
tree213be732aefeb00801111d08d5477e5f4f3fe552 /target/m68k/gdbstub.c
parentbf1fa6912dd44463b00ca1c4f006a807b2940466 (diff)
m68k comments break patch submission due to being incorrectly formatted
Altering all comments in target/m68k to match Qemu coding styles so that future patches wont fail due to style breaches. Signed-off-by: Lucien Murray-Pitts <lucienmp.qemu@gmail.com> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20190606234125.GA4830@localhost.localdomain> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'target/m68k/gdbstub.c')
-rw-r--r--target/m68k/gdbstub.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/target/m68k/gdbstub.c b/target/m68k/gdbstub.c
index 5cad2b658f..fdc96f57ff 100644
--- a/target/m68k/gdbstub.c
+++ b/target/m68k/gdbstub.c
@@ -41,8 +41,10 @@ int m68k_cpu_gdb_read_register(CPUState *cs, uint8_t *mem_buf, int n)
return gdb_get_reg32(mem_buf, env->pc);
}
}
- /* FP registers not included here because they vary between
- ColdFire and m68k. Use XML bits for these. */
+ /*
+ * FP registers not included here because they vary between
+ * ColdFire and m68k. Use XML bits for these.
+ */
return 0;
}