diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 14:58:37 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:54:23 -0600 |
| commit | c76bc08df2c05bdfa561f3486d38800718212d10 (patch) | |
| tree | 11189d9d2e25615dbce4f2e248ac02772bf864f9 /hw/acpi/vmgenid.c | |
| parent | 46408f1811447923921cd7d618e2c1e747592558 (diff) | |
| download | focaccia-qemu-c76bc08df2c05bdfa561f3486d38800718212d10.tar.gz focaccia-qemu-c76bc08df2c05bdfa561f3486d38800718212d10.zip | |
hw/acpi: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/acpi/vmgenid.c')
| -rw-r--r-- | hw/acpi/vmgenid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/acpi/vmgenid.c b/hw/acpi/vmgenid.c index e63c8af4c3..9c2ca85cc7 100644 --- a/hw/acpi/vmgenid.c +++ b/hw/acpi/vmgenid.c @@ -214,7 +214,7 @@ static void vmgenid_realize(DeviceState *dev, Error **errp) vmgenid_update_guest(vms); } -static Property vmgenid_device_properties[] = { +static const Property vmgenid_device_properties[] = { DEFINE_PROP_UUID(VMGENID_GUID, VmGenIdState, guid), DEFINE_PROP_END_OF_LIST(), }; |