diff options
author | Andreas Färber <afaerber@suse.de> | 2012-02-25 03:37:53 +0100 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2012-03-14 22:20:24 +0100 |
commit | 053902488581f504149e1507fe5328cfd57caa23 (patch) | |
tree | fe8fc375285ea0d6ba72f12954d7f57ecc077003 /linux-user/m68k | |
parent | e544a19f8935e48bb90ecbba0e7e8faa7138c74a (diff) |
linux-user: Don't overuse CPUState
In target-specific code use CPU*State.
While at it, fix indentation on those lines.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'linux-user/m68k')
-rw-r--r-- | linux-user/m68k/syscall.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/m68k/syscall.h b/linux-user/m68k/syscall.h index 2fd85dd6fb..26187930db 100644 --- a/linux-user/m68k/syscall.h +++ b/linux-user/m68k/syscall.h @@ -18,4 +18,4 @@ struct target_pt_regs { #define UNAME_MACHINE "m68k" -void do_m68k_simcall(CPUState *, int); +void do_m68k_simcall(CPUM68KState *, int); |