diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2023-12-21 14:16:39 +1100 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2023-12-30 07:38:06 +1100 |
| commit | 3abedf29b4f0b8e523db91aeb38438e4819bae6f (patch) | |
| tree | b33939a8177c27d036ba3ddd4c672c6fa508ccb6 /hw/usb/hcd-ehci.c | |
| parent | 5e6aceb2dd69200c4a5ae900d5ddbcf3462973d6 (diff) | |
| download | focaccia-qemu-3abedf29b4f0b8e523db91aeb38438e4819bae6f.tar.gz focaccia-qemu-3abedf29b4f0b8e523db91aeb38438e4819bae6f.zip | |
hw/usb: Constify VMState
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20231221031652.119827-59-richard.henderson@linaro.org>
Diffstat (limited to 'hw/usb/hcd-ehci.c')
| -rw-r--r-- | hw/usb/hcd-ehci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb/hcd-ehci.c b/hw/usb/hcd-ehci.c index 19b4534c20..a8dcfe373a 100644 --- a/hw/usb/hcd-ehci.c +++ b/hw/usb/hcd-ehci.c @@ -2473,7 +2473,7 @@ const VMStateDescription vmstate_ehci = { .minimum_version_id = 1, .pre_save = usb_ehci_pre_save, .post_load = usb_ehci_post_load, - .fields = (VMStateField[]) { + .fields = (const VMStateField[]) { /* mmio registers */ VMSTATE_UINT32(usbcmd, EHCIState), VMSTATE_UINT32(usbsts, EHCIState), |