diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 14:48:37 +0000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:54:10 -0600 |
commit | f3ef448ac535cde957b00f0b4468dd259138bac7 (patch) | |
tree | 74081c4cc7619dcb47c032b903b7018971a5f352 | |
parent | b7ce9e19f4578ca52615e2639558db2aba61096f (diff) | |
download | qemu-f3ef448ac535cde957b00f0b4468dd259138bac7.zip qemu-f3ef448ac535cde957b00f0b4468dd259138bac7.tar.gz qemu-f3ef448ac535cde957b00f0b4468dd259138bac7.tar.bz2 |
target/riscv: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r-- | target/riscv/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/riscv/cpu.c b/target/riscv/cpu.c index 80b0995..4329015 100644 --- a/target/riscv/cpu.c +++ b/target/riscv/cpu.c @@ -2661,7 +2661,7 @@ RISCVCPUImpliedExtsRule *riscv_multi_ext_implied_rules[] = { NULL }; -static Property riscv_cpu_properties[] = { +static const Property riscv_cpu_properties[] = { DEFINE_PROP_BOOL("debug", RISCVCPU, cfg.debug, true), {.name = "pmu-mask", .info = &prop_pmu_mask}, |