From: Philippe Mathieu-Daudé Date: Tue, 21 Jan 2025 12:10:07 +0000 (+0100) Subject: target/tricore: Move has_work() from CPUClass to SysemuCPUOps X-Git-Tag: v10.0.0-rc0~17^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d55ea95f256f1300edea837136f2a3841d20c588;p=thirdparty%2Fqemu.git target/tricore: Move has_work() from CPUClass to SysemuCPUOps Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Message-Id: <20250125170125.32855-23-philmd@linaro.org> --- diff --git a/target/tricore/cpu.c b/target/tricore/cpu.c index eb794674c8..16acc4ecb9 100644 --- a/target/tricore/cpu.c +++ b/target/tricore/cpu.c @@ -165,6 +165,7 @@ static bool tricore_cpu_exec_interrupt(CPUState *cs, int interrupt_request) #include "hw/core/sysemu-cpu-ops.h" static const struct SysemuCPUOps tricore_sysemu_ops = { + .has_work = tricore_cpu_has_work, .get_phys_page_debug = tricore_cpu_get_phys_page_debug, }; @@ -193,7 +194,6 @@ static void tricore_cpu_class_init(ObjectClass *c, void *data) resettable_class_set_parent_phases(rc, NULL, tricore_cpu_reset_hold, NULL, &mcc->parent_phases); cc->class_by_name = tricore_cpu_class_by_name; - cc->has_work = tricore_cpu_has_work; cc->mmu_index = tricore_cpu_mmu_index; cc->gdb_read_register = tricore_cpu_gdb_read_register;