summary refs log tree commit diff stats
path: root/hw/s390x/ipl.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2024-12-13 16:45:40 +0000
committerRichard Henderson <richard.henderson@linaro.org>2024-12-15 12:56:10 -0600
commit6048081263f9baa4550dd7c13b3d9a470a55eef7 (patch)
treed0bf566b5642c03bc71ce3b4d0dea786bac89405 /hw/s390x/ipl.c
parent521e2be94d4e1cebe0e9387bd1124d5148b69da2 (diff)
downloadfocaccia-qemu-6048081263f9baa4550dd7c13b3d9a470a55eef7.tar.gz
focaccia-qemu-6048081263f9baa4550dd7c13b3d9a470a55eef7.zip
hw/s390x: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/s390x/ipl.c')
-rw-r--r--hw/s390x/ipl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/s390x/ipl.c b/hw/s390x/ipl.c
index 30734661ad..88a97f0085 100644
--- a/hw/s390x/ipl.c
+++ b/hw/s390x/ipl.c
@@ -291,7 +291,7 @@ static void s390_ipl_realize(DeviceState *dev, Error **errp)
     qemu_register_reset(resettable_cold_reset_fn, dev);
 }
 
-static Property s390_ipl_properties[] = {
+static const Property s390_ipl_properties[] = {
     DEFINE_PROP_STRING("kernel", S390IPLState, kernel),
     DEFINE_PROP_STRING("initrd", S390IPLState, initrd),
     DEFINE_PROP_STRING("cmdline", S390IPLState, cmdline),