diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 16:45:40 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:56:10 -0600 |
| commit | 6048081263f9baa4550dd7c13b3d9a470a55eef7 (patch) | |
| tree | d0bf566b5642c03bc71ce3b4d0dea786bac89405 /hw/s390x/ipl.c | |
| parent | 521e2be94d4e1cebe0e9387bd1124d5148b69da2 (diff) | |
| download | focaccia-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.c | 2 |
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), |