[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 39/71] hw/m68k: Constify VMState
From: |
Richard Henderson |
Subject: |
[PATCH v2 39/71] hw/m68k: Constify VMState |
Date: |
Thu, 21 Dec 2023 14:16:20 +1100 |
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
hw/m68k/next-cube.c | 4 ++--
hw/m68k/q800-glue.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/hw/m68k/next-cube.c b/hw/m68k/next-cube.c
index fabd861941..baca38bf39 100644
--- a/hw/m68k/next-cube.c
+++ b/hw/m68k/next-cube.c
@@ -996,7 +996,7 @@ static const VMStateDescription next_rtc_vmstate = {
.name = "next-rtc",
.version_id = 1,
.minimum_version_id = 1,
- .fields = (VMStateField[]) {
+ .fields = (const VMStateField[]) {
VMSTATE_UINT8_ARRAY(ram, NextRtc, 32),
VMSTATE_UINT8(command, NextRtc),
VMSTATE_UINT8(value, NextRtc),
@@ -1011,7 +1011,7 @@ static const VMStateDescription next_pc_vmstate = {
.name = "next-pc",
.version_id = 1,
.minimum_version_id = 1,
- .fields = (VMStateField[]) {
+ .fields = (const VMStateField[]) {
VMSTATE_UINT32(scr1, NeXTPC),
VMSTATE_UINT32(scr2, NeXTPC),
VMSTATE_UINT32(int_mask, NeXTPC),
diff --git a/hw/m68k/q800-glue.c b/hw/m68k/q800-glue.c
index f413b1599a..b5a7713863 100644
--- a/hw/m68k/q800-glue.c
+++ b/hw/m68k/q800-glue.c
@@ -189,7 +189,7 @@ static const VMStateDescription vmstate_glue = {
.name = "q800-glue",
.version_id = 0,
.minimum_version_id = 0,
- .fields = (VMStateField[]) {
+ .fields = (const VMStateField[]) {
VMSTATE_UINT8(ipr, GLUEState),
VMSTATE_UINT8(auxmode, GLUEState),
VMSTATE_TIMER_PTR(nmi_release, GLUEState),
--
2.34.1
- [PATCH v2 30/71] hw/i2c: Constify VMState, (continued)
- [PATCH v2 30/71] hw/i2c: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 31/71] hw/i386: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 32/71] hw/ide: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 33/71] hw/input: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 34/71] hw/intc: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 35/71] hw/ipack: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 36/71] hw/ipmi: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 37/71] hw/isa: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 38/71] hw/loongarch: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 39/71] hw/m68k: Constify VMState,
Richard Henderson <=
- [PATCH v2 40/71] hw/misc: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 41/71] hw/net: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 42/71] hw/nvram: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 43/71] hw/openrisc: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 44/71] hw/pci: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 45/71] hw/pci-bridge: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 46/71] hw/pci-host: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 47/71] hw/ppc: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 48/71] hw/riscv: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 49/71] hw/rtc: Constify VMState, Richard Henderson, 2023/12/20