diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-12-21 14:16:07 +1100 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-12-29 11:17:30 +1100 |
commit | f0613160d20f0a3484ea8b6d7cb085c22a84682f (patch) | |
tree | c713ac894aa2dd24420f565100e913e3c4ddf726 /hw/display/xlnx_dp.c | |
parent | 2f6cab053f25ed500c187099e7e7484ead69729a (diff) | |
download | qemu-f0613160d20f0a3484ea8b6d7cb085c22a84682f.zip qemu-f0613160d20f0a3484ea8b6d7cb085c22a84682f.tar.gz qemu-f0613160d20f0a3484ea8b6d7cb085c22a84682f.tar.bz2 |
hw/display: Constify VMState
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20231221031652.119827-27-richard.henderson@linaro.org>
Diffstat (limited to 'hw/display/xlnx_dp.c')
-rw-r--r-- | hw/display/xlnx_dp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/xlnx_dp.c b/hw/display/xlnx_dp.c index eee8f33..c42fc38 100644 --- a/hw/display/xlnx_dp.c +++ b/hw/display/xlnx_dp.c @@ -262,7 +262,7 @@ typedef enum DPVideoFmt DPVideoFmt; static const VMStateDescription vmstate_dp = { .name = TYPE_XLNX_DP, .version_id = 2, - .fields = (VMStateField[]){ + .fields = (const VMStateField[]){ VMSTATE_UINT32_ARRAY(core_registers, XlnxDPState, DP_CORE_REG_ARRAY_SIZE), VMSTATE_UINT32_ARRAY(avbufm_registers, XlnxDPState, |