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/s390-stattrib.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/s390-stattrib.c')
| -rw-r--r-- | hw/s390x/s390-stattrib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/s390x/s390-stattrib.c b/hw/s390x/s390-stattrib.c index c4259b5327..6c69c01e1f 100644 --- a/hw/s390x/s390-stattrib.c +++ b/hw/s390x/s390-stattrib.c @@ -360,7 +360,7 @@ static void s390_stattrib_realize(DeviceState *dev, Error **errp) &savevm_s390_stattrib_handlers, dev); } -static Property s390_stattrib_props[] = { +static const Property s390_stattrib_props[] = { DEFINE_PROP_BOOL("migration-enabled", S390StAttribState, migration_enabled, true), DEFINE_PROP_END_OF_LIST(), }; |