From 115e0f20c5e81f7f88274d323e8344de0761e137 Mon Sep 17 00:00:00 2001 From: Aleksandar Markovic Date: Mon, 3 Jun 2019 11:15:32 -0400 Subject: [PATCH] target/mips: Clean up lmi_helper.c Remove several minor checkpatch warnings and errors. Backports commit baf50011157bf5747c623f171f93f9e3d9dff615 from qemu --- qemu/target/mips/lmi_helper.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/qemu/target/mips/lmi_helper.c b/qemu/target/mips/lmi_helper.c index fb1245b3..6c645cf6 100644 --- a/qemu/target/mips/lmi_helper.c +++ b/qemu/target/mips/lmi_helper.c @@ -21,9 +21,11 @@ #include "cpu.h" #include "exec/helper-proto.h" -/* If the byte ordering doesn't matter, i.e. all columns are treated - identically, then this union can be used directly. If byte ordering - does matter, we generally ignore dumping to memory. */ +/* + * If the byte ordering doesn't matter, i.e. all columns are treated + * identically, then this union can be used directly. If byte ordering + * does matter, we generally ignore dumping to memory. + */ typedef union { uint8_t ub[8]; int8_t sb[8];