[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 17/71] target/sparc: Constify VMState in machine.c
From: |
Richard Henderson |
Subject: |
[PATCH v2 17/71] target/sparc: Constify VMState in machine.c |
Date: |
Thu, 21 Dec 2023 14:15:58 +1100 |
Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/sparc/machine.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/target/sparc/machine.c b/target/sparc/machine.c
index 44dfc07014..2b5686c330 100644
--- a/target/sparc/machine.c
+++ b/target/sparc/machine.c
@@ -10,7 +10,7 @@ static const VMStateDescription vmstate_cpu_timer = {
.name = "cpu_timer",
.version_id = 1,
.minimum_version_id = 1,
- .fields = (VMStateField[]) {
+ .fields = (const VMStateField[]) {
VMSTATE_UINT32(frequency, CPUTimer),
VMSTATE_UINT32(disabled, CPUTimer),
VMSTATE_UINT64(disabled_mask, CPUTimer),
@@ -29,7 +29,7 @@ static const VMStateDescription vmstate_trap_state = {
.name = "trap_state",
.version_id = 1,
.minimum_version_id = 1,
- .fields = (VMStateField[]) {
+ .fields = (const VMStateField[]) {
VMSTATE_UINT64(tpc, trap_state),
VMSTATE_UINT64(tnpc, trap_state),
VMSTATE_UINT64(tstate, trap_state),
@@ -42,7 +42,7 @@ static const VMStateDescription vmstate_tlb_entry = {
.name = "tlb_entry",
.version_id = 1,
.minimum_version_id = 1,
- .fields = (VMStateField[]) {
+ .fields = (const VMStateField[]) {
VMSTATE_UINT64(tag, SparcTLBEntry),
VMSTATE_UINT64(tte, SparcTLBEntry),
VMSTATE_END_OF_LIST()
@@ -147,7 +147,7 @@ const VMStateDescription vmstate_sparc_cpu = {
.version_id = SPARC_VMSTATE_VER,
.minimum_version_id = SPARC_VMSTATE_VER,
.pre_save = cpu_pre_save,
- .fields = (VMStateField[]) {
+ .fields = (const VMStateField[]) {
VMSTATE_UINTTL_ARRAY(env.gregs, SPARCCPU, 8),
VMSTATE_UINT32(env.nwindows, SPARCCPU),
VMSTATE_VARRAY_MULTIPLY(env.regbase, SPARCCPU, env.nwindows, 16,
--
2.34.1
- [PATCH v2 07/71] target/hppa: Constify VMState in machine.c, (continued)
- [PATCH v2 07/71] target/hppa: Constify VMState in machine.c, Richard Henderson, 2023/12/20
- [PATCH v2 08/71] target/i386: Constify VMState in machine.c, Richard Henderson, 2023/12/20
- [PATCH v2 09/71] target/loongarch: Constify VMState in machine.c, Richard Henderson, 2023/12/20
- [PATCH v2 10/71] target/m68k: Constify VMState in machine.c, Richard Henderson, 2023/12/20
- [PATCH v2 11/71] target/microblaze: Constify VMState in machine.c, Richard Henderson, 2023/12/20
- [PATCH v2 12/71] target/mips: Constify VMState in machine.c, Richard Henderson, 2023/12/20
- [PATCH v2 13/71] target/openrisc: Constify VMState in machine.c, Richard Henderson, 2023/12/20
- [PATCH v2 14/71] target/ppc: Constify VMState in machine.c, Richard Henderson, 2023/12/20
- [PATCH v2 15/71] target/riscv: Constify VMState in machine.c, Richard Henderson, 2023/12/20
- [PATCH v2 16/71] target/s390x: Constify VMState in machine.c, Richard Henderson, 2023/12/20
- [PATCH v2 17/71] target/sparc: Constify VMState in machine.c,
Richard Henderson <=
- [PATCH v2 18/71] hw/arm: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 19/71] hw/core: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 20/71] hw/9pfs: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 21/71] hw/acpi: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 22/71] hw/adc: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 23/71] hw/audio: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 24/71] hw/block: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 25/71] hw/char: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 26/71] hw/display: Constify VMState, Richard Henderson, 2023/12/20
- [PATCH v2 27/71] hw/dma: Constify VMState, Richard Henderson, 2023/12/20