diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2023-12-21 14:16:18 +1100 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2023-12-29 11:17:30 +1100 |
| commit | cbf195061cfe1808b4a7f3f5ae570e3d926195ea (patch) | |
| tree | 666021db321ab9b7978f4d497005b9ee5c65a533 /hw/isa/i82378.c | |
| parent | 09c6ac6d8fedb95d960163ab1f4f6ee9bb405ce8 (diff) | |
| download | focaccia-qemu-cbf195061cfe1808b4a7f3f5ae570e3d926195ea.tar.gz focaccia-qemu-cbf195061cfe1808b4a7f3f5ae570e3d926195ea.zip | |
hw/isa: Constify VMState
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20231221031652.119827-38-richard.henderson@linaro.org>
Diffstat (limited to 'hw/isa/i82378.c')
| -rw-r--r-- | hw/isa/i82378.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/isa/i82378.c b/hw/isa/i82378.c index 203b92c264..cbaa152a89 100644 --- a/hw/isa/i82378.c +++ b/hw/isa/i82378.c @@ -40,7 +40,7 @@ static const VMStateDescription vmstate_i82378 = { .name = "pci-i82378", .version_id = 0, .minimum_version_id = 0, - .fields = (VMStateField[]) { + .fields = (const VMStateField[]) { VMSTATE_PCI_DEVICE(parent_obj, I82378State), VMSTATE_END_OF_LIST() }, |