From: Philippe Mathieu-Daudé Date: Tue, 8 Jul 2025 09:57:43 +0000 (+0200) Subject: target/s390x: Remove unused s390_cpu_[un]halt() user stubs X-Git-Tag: v10.1.0-rc0~27^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=40c94731c4495e78f0f7402890eb01a0f43a64ca;p=thirdparty%2Fqemu.git target/s390x: Remove unused s390_cpu_[un]halt() user stubs Since commit da944885469 ("target/s390x: make helper.c sysemu-only") target/s390x/helper.c is only built for system mode, so s390_cpu_halt() and s390_cpu_unhalt() are never called from user mode. Fixes: da944885469 ("target/s390x: make helper.c sysemu-only") Signed-off-by: Philippe Mathieu-Daudé Message-ID: <20250708095746.12697-2-philmd@linaro.org> Signed-off-by: Thomas Huth --- diff --git a/target/s390x/s390x-internal.h b/target/s390x/s390x-internal.h index a4ba6227ab..6894f0a256 100644 --- a/target/s390x/s390x-internal.h +++ b/target/s390x/s390x-internal.h @@ -246,16 +246,6 @@ void s390_cpu_finalize(Object *obj); void s390_cpu_system_class_init(CPUClass *cc); void s390_cpu_machine_reset_cb(void *opaque); bool s390_cpu_has_work(CPUState *cs); - -#else -static inline unsigned int s390_cpu_halt(S390CPU *cpu) -{ - return 0; -} - -static inline void s390_cpu_unhalt(S390CPU *cpu) -{ -} #endif /* CONFIG_USER_ONLY */