diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 15:03:52 +0000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:54:27 -0600 |
commit | e15bd5dd059a8833dd30da2b78ab4f43e917f216 (patch) | |
tree | f2786f89708f59501d03f76be12addd1286752a9 /hw/arm/bcm2836.c | |
parent | b5e4f90e64f0c2c4c3a6c65b0de11b752640e31b (diff) | |
download | qemu-e15bd5dd059a8833dd30da2b78ab4f43e917f216.zip qemu-e15bd5dd059a8833dd30da2b78ab4f43e917f216.tar.gz qemu-e15bd5dd059a8833dd30da2b78ab4f43e917f216.tar.bz2 |
hw/arm: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/arm/bcm2836.c')
-rw-r--r-- | hw/arm/bcm2836.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/bcm2836.c b/hw/arm/bcm2836.c index 40a379b..95e1680 100644 --- a/hw/arm/bcm2836.c +++ b/hw/arm/bcm2836.c @@ -18,7 +18,7 @@ #include "target/arm/cpu-qom.h" #include "target/arm/gtimer.h" -static Property bcm2836_enabled_cores_property = +static const Property bcm2836_enabled_cores_property = DEFINE_PROP_UINT32("enabled-cpus", BCM283XBaseState, enabled_cpus, 0); static void bcm283x_base_init(Object *obj) |