diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 14:44:59 +0000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:54:05 -0600 |
commit | f3d9225f6a259c5eea527c264d3d0d2cd425d9f8 (patch) | |
tree | 206e1f34e7af97d9cf41b0a09c4d0e695c2f5189 /target/microblaze | |
parent | 032c2ec4ee7e34e80924b3fdc970e63ff3498dc3 (diff) | |
download | qemu-f3d9225f6a259c5eea527c264d3d0d2cd425d9f8.zip qemu-f3d9225f6a259c5eea527c264d3d0d2cd425d9f8.tar.gz qemu-f3d9225f6a259c5eea527c264d3d0d2cd425d9f8.tar.bz2 |
target/microblaze: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/microblaze')
-rw-r--r-- | target/microblaze/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/microblaze/cpu.c b/target/microblaze/cpu.c index 0e1e22d..0e41e39 100644 --- a/target/microblaze/cpu.c +++ b/target/microblaze/cpu.c @@ -339,7 +339,7 @@ static void mb_cpu_initfn(Object *obj) object_property_add_alias(obj, "little-endian", obj, "endianness"); } -static Property mb_properties[] = { +static const Property mb_properties[] = { /* * Following properties are used by Xilinx DTS conversion tool * do not rename them. |