summary refs log tree commit diff stats
path: root/hw/cpu/cluster.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2024-12-13 15:25:18 +0000
committerRichard Henderson <richard.henderson@linaro.org>2024-12-15 12:54:47 -0600
commit804467e148a254a503834a2c712cad827f6f4b25 (patch)
tree36f955f79a4e51b0e639aa8f4f819c5539fffeaa /hw/cpu/cluster.c
parentf5ca2d6233c88464bcf2616bc8697247cb57bcc5 (diff)
downloadfocaccia-qemu-804467e148a254a503834a2c712cad827f6f4b25.tar.gz
focaccia-qemu-804467e148a254a503834a2c712cad827f6f4b25.zip
hw/cpu: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/cpu/cluster.c')
-rw-r--r--hw/cpu/cluster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/cpu/cluster.c b/hw/cpu/cluster.c
index 61289a840d..8e43621b5c 100644
--- a/hw/cpu/cluster.c
+++ b/hw/cpu/cluster.c
@@ -25,7 +25,7 @@
 #include "hw/qdev-properties.h"
 #include "qapi/error.h"
 
-static Property cpu_cluster_properties[] = {
+static const Property cpu_cluster_properties[] = {
     DEFINE_PROP_UINT32("cluster-id", CPUClusterState, cluster_id, 0),
     DEFINE_PROP_END_OF_LIST()
 };