diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2019-03-22 19:38:33 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2019-06-10 07:03:42 -0700 |
commit | 06887771bda2a297f2fb669522166a97d67e2ad9 (patch) | |
tree | 1ca87b55813a6349a500a9878779f8ae4018e874 /target/tilegx | |
parent | 5a59fbce9141c40db0f0a5a6e17583ad9189b48b (diff) | |
download | qemu-06887771bda2a297f2fb669522166a97d67e2ad9.zip qemu-06887771bda2a297f2fb669522166a97d67e2ad9.tar.gz qemu-06887771bda2a297f2fb669522166a97d67e2ad9.tar.bz2 |
target/tilegx: Use env_cpu
Cleanup in the boilerplate that each target must define.
Replace tilegx_env_get_cpu with env_archcpu. The combination
CPU(tilegx_env_get_cpu) should have used ENV_GET_CPU to begin;
use env_cpu now.
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/tilegx')
-rw-r--r-- | target/tilegx/cpu.h | 5 | ||||
-rw-r--r-- | target/tilegx/helper.c | 2 |
2 files changed, 1 insertions, 6 deletions
diff --git a/target/tilegx/cpu.h b/target/tilegx/cpu.h index 135df63..7f8fe7c 100644 --- a/target/tilegx/cpu.h +++ b/target/tilegx/cpu.h @@ -138,11 +138,6 @@ typedef struct TileGXCPU { CPUTLGState env; } TileGXCPU; -static inline TileGXCPU *tilegx_env_get_cpu(CPUTLGState *env) -{ - return container_of(env, TileGXCPU, env); -} - #define ENV_OFFSET offsetof(TileGXCPU, env) /* TILE-Gx memory attributes */ diff --git a/target/tilegx/helper.c b/target/tilegx/helper.c index 4964bb9..a57a679 100644 --- a/target/tilegx/helper.c +++ b/target/tilegx/helper.c @@ -28,7 +28,7 @@ void helper_exception(CPUTLGState *env, uint32_t excp) { - CPUState *cs = CPU(tilegx_env_get_cpu(env)); + CPUState *cs = env_cpu(env); cs->exception_index = excp; cpu_loop_exit(cs); |