[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 04/71] target/i386: Constify all Property
From: |
Richard Henderson |
Subject: |
[PATCH 04/71] target/i386: Constify all Property |
Date: |
Fri, 13 Dec 2024 13:06:37 -0600 |
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/i386/cpu.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
index 305f2a41cf..5253399459 100644
--- a/target/i386/cpu.c
+++ b/target/i386/cpu.c
@@ -5384,7 +5384,7 @@ static X86CPUVersion x86_cpu_model_resolve_version(const
X86CPUModel *model)
return v;
}
-static Property max_x86_cpu_properties[] = {
+static const Property max_x86_cpu_properties[] = {
DEFINE_PROP_BOOL("migratable", X86CPU, migratable, true),
DEFINE_PROP_BOOL("host-cache-info", X86CPU, cache_info_passthrough, false),
DEFINE_PROP_END_OF_LIST()
@@ -8407,7 +8407,7 @@ void x86_update_hflags(CPUX86State *env)
env->hflags = hflags;
}
-static Property x86_cpu_properties[] = {
+static const Property x86_cpu_properties[] = {
#ifdef CONFIG_USER_ONLY
/* apic_id = 0 by default for *-user, see commit 9886e834 */
DEFINE_PROP_UINT32("apic-id", X86CPU, apic_id, 0),
--
2.43.0
- [PATCH 00/71] whole-tree: Constify Property structures, Richard Henderson, 2024/12/13
- [PULL 1/4] tcg: Reset free_temps before tcg_optimize, Richard Henderson, 2024/12/13
- [PATCH 02/71] target/avr: Constify all Property, Richard Henderson, 2024/12/13
- [PATCH 04/71] target/i386: Constify all Property,
Richard Henderson <=
- [PULL 3/4] include/exec: Introduce fpst alias in helper-head.h.inc, Richard Henderson, 2024/12/13
- [PATCH 05/71] target/microblaze: Constify all Property, Richard Henderson, 2024/12/13
- [PATCH 06/71] target/mips: Constify all Property, Richard Henderson, 2024/12/13
- [PATCH 07/71] target/ppc: Remove empty property list, Richard Henderson, 2024/12/13
- [PATCH 08/71] target/riscv: Constify all Property, Richard Henderson, 2024/12/13
- [PATCH 09/71] target/s390x: Constify all Property, Richard Henderson, 2024/12/13
- [PATCH 11/71] cpu-target: Constify all Property, Richard Henderson, 2024/12/13