diff options
author | Pierrick Bouvier <pierrick.bouvier@linaro.org> | 2025-03-24 21:59:04 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-23 15:04:57 -0700 |
commit | a725f37102317d64f7f23895906f8c8c5f5f1be9 (patch) | |
tree | 86516338c5c92aa3e0aaf7ba565996ca8217535e | |
parent | 5a9d472d01a3760a0bae7b93b5d67af8178fbed3 (diff) | |
download | qemu-a725f37102317d64f7f23895906f8c8c5f5f1be9.zip qemu-a725f37102317d64f7f23895906f8c8c5f5f1be9.tar.gz qemu-a725f37102317d64f7f23895906f8c8c5f5f1be9.tar.bz2 |
target/arm/cpu: always define kvm related registers
This does not hurt, even if they are not used.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-ID: <20250325045915.994760-20-pierrick.bouvier@linaro.org>
-rw-r--r-- | target/arm/cpu.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h index a8a1a8f..ab74127 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -971,7 +971,6 @@ struct ArchCPU { */ uint32_t kvm_target; -#ifdef CONFIG_KVM /* KVM init features for this CPU */ uint32_t kvm_init_features[7]; @@ -984,7 +983,6 @@ struct ArchCPU { /* KVM steal time */ OnOffAuto kvm_steal_time; -#endif /* CONFIG_KVM */ /* Uniprocessor system with MP extensions */ bool mp_is_up; |