summary refs log tree commit diff stats
path: root/hw/pci-bridge/i82801b11.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-12-21 14:16:26 +1100
committerRichard Henderson <richard.henderson@linaro.org>2023-12-30 07:38:06 +1100
commitf026c578eb1a07c0a62caf8e18aa51c6872e9ff2 (patch)
treefe7ace9e8f10c9ea1f255a9f490c970d0c034fe5 /hw/pci-bridge/i82801b11.c
parent8e5e0890b72f4ece6ce03c19e1800880c10a34dd (diff)
downloadfocaccia-qemu-f026c578eb1a07c0a62caf8e18aa51c6872e9ff2.tar.gz
focaccia-qemu-f026c578eb1a07c0a62caf8e18aa51c6872e9ff2.zip
hw/pci-bridge: Constify VMState
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20231221031652.119827-46-richard.henderson@linaro.org>
Diffstat (limited to 'hw/pci-bridge/i82801b11.c')
-rw-r--r--hw/pci-bridge/i82801b11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pci-bridge/i82801b11.c b/hw/pci-bridge/i82801b11.c
index 0e83cd11b2..c140919cbc 100644
--- a/hw/pci-bridge/i82801b11.c
+++ b/hw/pci-bridge/i82801b11.c
@@ -81,7 +81,7 @@ err_bridge:
 static const VMStateDescription i82801b11_bridge_dev_vmstate = {
     .name = "i82801b11_bridge",
     .priority = MIG_PRI_PCI_BUS,
-    .fields = (VMStateField[]) {
+    .fields = (const VMStateField[]) {
         VMSTATE_PCI_DEVICE(parent_obj, PCIBridge),
         VMSTATE_END_OF_LIST()
     }