From 54926203be817a82c7062cc5b277d488e6836758 Mon Sep 17 00:00:00 2001 From: Jian Cai Date: Thu, 30 Oct 2025 15:49:31 +0800 Subject: [PATCH] Fix the compilation of target arm-softmmu Fix the compilation of target arm-softmmu. Signed-off-by: Jian Cai --- target/arm/kvm_arm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/arm/kvm_arm.h b/target/arm/kvm_arm.h index 8c69957fbf..13509b7836 100644 --- a/target/arm/kvm_arm.h +++ b/target/arm/kvm_arm.h @@ -534,7 +534,7 @@ static inline int kvm_arm_get_writable_id_regs(ARMCPU *cpu, IdRegMap *idregmap) return -ENOSYS; } -void kvm_arm_writable_idregs_to_cpreg_list(ARMCPU *cpu) +static inline void kvm_arm_writable_idregs_to_cpreg_list(ARMCPU *cpu) { g_assert_not_reached(); } -- Gitee