diff options
author | Aleksandar Markovic <amarkovic@wavecomp.com> | 2019-04-23 13:29:40 +0200 |
---|---|---|
committer | Aleksandar Markovic <amarkovic@wavecomp.com> | 2019-06-01 20:20:20 +0200 |
commit | baf50011157bf5747c623f171f93f9e3d9dff615 (patch) | |
tree | d2f3ead3d956efb6ba4d99193f2ba76ee57ddfbc /target/mips | |
parent | f49ab2e1e6ca4f218cc970c937f91f9c69c95dd3 (diff) | |
download | qemu-baf50011157bf5747c623f171f93f9e3d9dff615.zip |
target/mips: Clean up lmi_helper.c
Remove several minor checkpatch warnings and errors.
Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <1556018982-3715-7-git-send-email-aleksandar.markovic@rt-rk.com>
Diffstat (limited to 'target/mips')
-rw-r--r-- | target/mips/lmi_helper.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/target/mips/lmi_helper.c b/target/mips/lmi_helper.c index fb1245b39d..6c645cf679 100644 --- a/target/mips/lmi_helper.c +++ b/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]; |