diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 14:45:49 +0000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:54:07 -0600 |
commit | b7ce9e19f4578ca52615e2639558db2aba61096f (patch) | |
tree | 0dc85e60b634075aa89a8772eb9984d542eb3045 | |
parent | f3d9225f6a259c5eea527c264d3d0d2cd425d9f8 (diff) | |
download | qemu-b7ce9e19f4578ca52615e2639558db2aba61096f.zip qemu-b7ce9e19f4578ca52615e2639558db2aba61096f.tar.gz qemu-b7ce9e19f4578ca52615e2639558db2aba61096f.tar.bz2 |
target/mips: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r-- | target/mips/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/mips/cpu.c b/target/mips/cpu.c index 4feacc8..02c0e1b 100644 --- a/target/mips/cpu.c +++ b/target/mips/cpu.c @@ -539,7 +539,7 @@ static const struct SysemuCPUOps mips_sysemu_ops = { }; #endif -static Property mips_cpu_properties[] = { +static const Property mips_cpu_properties[] = { DEFINE_PROP_BOOL("big-endian", MIPSCPU, is_big_endian, TARGET_BIG_ENDIAN), DEFINE_PROP_END_OF_LIST(), }; |