mirror of https://github.com/xemu-project/xemu.git
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>
This commit is contained in:
parent
f49ab2e1e6
commit
baf5001115
|
@ -21,9 +21,11 @@
|
||||||
#include "cpu.h"
|
#include "cpu.h"
|
||||||
#include "exec/helper-proto.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
|
* If the byte ordering doesn't matter, i.e. all columns are treated
|
||||||
does matter, we generally ignore dumping to memory. */
|
* identically, then this union can be used directly. If byte ordering
|
||||||
|
* does matter, we generally ignore dumping to memory.
|
||||||
|
*/
|
||||||
typedef union {
|
typedef union {
|
||||||
uint8_t ub[8];
|
uint8_t ub[8];
|
||||||
int8_t sb[8];
|
int8_t sb[8];
|
||||||
|
|
Loading…
Reference in New Issue