mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
hw/arm: Constify VMState
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20231221031652.119827-19-richard.henderson@linaro.org>
This commit is contained in:
parent
dd9729b302
commit
607ef5706c
15 changed files with 45 additions and 45 deletions
|
@ -316,7 +316,7 @@ static const VMStateDescription vmstate_pxa2xx_pic_regs = {
|
|||
.version_id = 0,
|
||||
.minimum_version_id = 0,
|
||||
.post_load = pxa2xx_pic_post_load,
|
||||
.fields = (VMStateField[]) {
|
||||
.fields = (const VMStateField[]) {
|
||||
VMSTATE_UINT32_ARRAY(int_enabled, PXA2xxPICState, 2),
|
||||
VMSTATE_UINT32_ARRAY(int_pending, PXA2xxPICState, 2),
|
||||
VMSTATE_UINT32_ARRAY(is_fiq, PXA2xxPICState, 2),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue