aboutsummaryrefslogtreecommitdiff
path: root/hw/misc/xlnx-versal-xramc.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-12-21 14:16:21 +1100
committerRichard Henderson <richard.henderson@linaro.org>2023-12-30 07:38:06 +1100
commite4ea952fb0180e85655e9a93d39a1ad9442f76f2 (patch)
treec9262dcb8b876dac5d561369f40d2170d6ca332e /hw/misc/xlnx-versal-xramc.c
parent2a031ec751a858e9b0dba754b502c0bc47876ef2 (diff)
hw/misc: Constify VMState
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20231221031652.119827-41-richard.henderson@linaro.org>
Diffstat (limited to 'hw/misc/xlnx-versal-xramc.c')
-rw-r--r--hw/misc/xlnx-versal-xramc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/misc/xlnx-versal-xramc.c b/hw/misc/xlnx-versal-xramc.c
index e5b719a0ed..a5f78c190e 100644
--- a/hw/misc/xlnx-versal-xramc.c
+++ b/hw/misc/xlnx-versal-xramc.c
@@ -212,7 +212,7 @@ static const VMStateDescription vmstate_xram_ctrl = {
.name = TYPE_XLNX_XRAM_CTRL,
.version_id = 1,
.minimum_version_id = 1,
- .fields = (VMStateField[]) {
+ .fields = (const VMStateField[]) {
VMSTATE_UINT32_ARRAY(regs, XlnxXramCtrl, XRAM_CTRL_R_MAX),
VMSTATE_END_OF_LIST(),
}