mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-28 01:21:58 +00:00
Now that a struct is the only member left in struct
mips_fpu_emulator_stats cleanup that unnecessary nesting of structs. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
baee502ce2
commit
4a99d1e25b
3 changed files with 34 additions and 36 deletions
|
@ -23,17 +23,15 @@
|
|||
#ifndef _ASM_FPU_EMULATOR_H
|
||||
#define _ASM_FPU_EMULATOR_H
|
||||
|
||||
struct mips_fpu_emulator_private {
|
||||
struct {
|
||||
unsigned int emulated;
|
||||
unsigned int loads;
|
||||
unsigned int stores;
|
||||
unsigned int cp1ops;
|
||||
unsigned int cp1xops;
|
||||
unsigned int errors;
|
||||
} stats;
|
||||
struct mips_fpu_emulator_stats {
|
||||
unsigned int emulated;
|
||||
unsigned int loads;
|
||||
unsigned int stores;
|
||||
unsigned int cp1ops;
|
||||
unsigned int cp1xops;
|
||||
unsigned int errors;
|
||||
};
|
||||
|
||||
extern struct mips_fpu_emulator_private fpuemuprivate;
|
||||
extern struct mips_fpu_emulator_stats fpuemustats;
|
||||
|
||||
#endif /* _ASM_FPU_EMULATOR_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue