diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 14:40:50 +0000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:53:43 -0600 |
commit | eeed7aed0696af646261e20e18daae3fb96d2a6f (patch) | |
tree | 3fa3bbc665b63963626dfd147338f1350ae41a05 /target/arm/cpu64.c | |
parent | ca80a5d026a280762e0772615f1988db542b3ade (diff) | |
download | qemu-eeed7aed0696af646261e20e18daae3fb96d2a6f.zip qemu-eeed7aed0696af646261e20e18daae3fb96d2a6f.tar.gz qemu-eeed7aed0696af646261e20e18daae3fb96d2a6f.tar.bz2 |
target/arm: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/arm/cpu64.c')
-rw-r--r-- | target/arm/cpu64.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/arm/cpu64.c b/target/arm/cpu64.c index c1cac91..ec77c5b 100644 --- a/target/arm/cpu64.c +++ b/target/arm/cpu64.c @@ -547,11 +547,11 @@ void arm_cpu_pauth_finalize(ARMCPU *cpu, Error **errp) cpu->isar.id_aa64isar2 = isar2; } -static Property arm_cpu_pauth_property = +static const Property arm_cpu_pauth_property = DEFINE_PROP_BOOL("pauth", ARMCPU, prop_pauth, true); -static Property arm_cpu_pauth_impdef_property = +static const Property arm_cpu_pauth_impdef_property = DEFINE_PROP_BOOL("pauth-impdef", ARMCPU, prop_pauth_impdef, false); -static Property arm_cpu_pauth_qarma3_property = +static const Property arm_cpu_pauth_qarma3_property = DEFINE_PROP_BOOL("pauth-qarma3", ARMCPU, prop_pauth_qarma3, false); void aarch64_add_pauth_properties(Object *obj) |