diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2019-03-22 18:08:48 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2019-06-10 07:03:42 -0700 |
| commit | 6aa9e42f27331be34e06d4d66f92f2272868f96a (patch) | |
| tree | e46abcf1621eddfb70d4f3825d4ae366e1147f67 /hw/i386/pc.c | |
| parent | 25f327081b4f63290cce0607512e4627cbfd408e (diff) | |
| download | focaccia-qemu-6aa9e42f27331be34e06d4d66f92f2272868f96a.tar.gz focaccia-qemu-6aa9e42f27331be34e06d4d66f92f2272868f96a.zip | |
target/i386: Use env_cpu, env_archcpu
Cleanup in the boilerplate that each target must define. Replace x86_env_get_cpu with env_archcpu. The combination CPU(x86_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 'hw/i386/pc.c')
| -rw-r--r-- | hw/i386/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/i386/pc.c b/hw/i386/pc.c index edc240bcbf..1b08b56362 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -406,7 +406,7 @@ uint64_t cpu_get_tsc(CPUX86State *env) /* IRQ handling */ int cpu_get_pic_interrupt(CPUX86State *env) { - X86CPU *cpu = x86_env_get_cpu(env); + X86CPU *cpu = env_archcpu(env); int intno; if (!kvm_irqchip_in_kernel()) { |