summary refs log tree commit diff stats
path: root/hw/misc/arm_l2x0.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2024-12-13 16:15:59 +0000
committerRichard Henderson <richard.henderson@linaro.org>2024-12-15 12:55:39 -0600
commit30029973103ac7f7ffb7bce0f088b773ad9f5dae (patch)
tree924ee7b9dec346b9a2e51482ceac64f61f378b13 /hw/misc/arm_l2x0.c
parent56d8d2b34288c3ea6b62d9e0069cc927d542ea93 (diff)
downloadfocaccia-qemu-30029973103ac7f7ffb7bce0f088b773ad9f5dae.tar.gz
focaccia-qemu-30029973103ac7f7ffb7bce0f088b773ad9f5dae.zip
hw/misc: Constify all Property
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/misc/arm_l2x0.c')
-rw-r--r--hw/misc/arm_l2x0.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/misc/arm_l2x0.c b/hw/misc/arm_l2x0.c
index 1902ebd3bc..9c209f13b0 100644
--- a/hw/misc/arm_l2x0.c
+++ b/hw/misc/arm_l2x0.c
@@ -173,7 +173,7 @@ static void l2x0_priv_init(Object *obj)
     sysbus_init_mmio(dev, &s->iomem);
 }
 
-static Property l2x0_properties[] = {
+static const Property l2x0_properties[] = {
     DEFINE_PROP_UINT32("cache-type", L2x0State, cache_type, 0x1c100100),
     DEFINE_PROP_END_OF_LIST(),
 };