[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 13/71] target/openrisc: Constify VMState in machine.c
|
From: |
Richard Henderson |
|
Subject: |
[PATCH 13/71] target/openrisc: Constify VMState in machine.c |
|
Date: |
Sun, 5 Nov 2023 22:57:29 -0800 |
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/openrisc/machine.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/target/openrisc/machine.c b/target/openrisc/machine.c
index b7d7388640..3574e571cb 100644
--- a/target/openrisc/machine.c
+++ b/target/openrisc/machine.c
@@ -25,7 +25,7 @@ static const VMStateDescription vmstate_tlb_entry = {
.name = "tlb_entry",
.version_id = 1,
.minimum_version_id = 1,
- .fields = (VMStateField[]) {
+ .fields = (const VMStateField[]) {
VMSTATE_UINTTL(mr, OpenRISCTLBEntry),
VMSTATE_UINTTL(tr, OpenRISCTLBEntry),
VMSTATE_END_OF_LIST()
@@ -36,7 +36,7 @@ static const VMStateDescription vmstate_cpu_tlb = {
.name = "cpu_tlb",
.version_id = 2,
.minimum_version_id = 2,
- .fields = (VMStateField[]) {
+ .fields = (const VMStateField[]) {
VMSTATE_STRUCT_ARRAY(itlb, CPUOpenRISCTLBContext, TLB_SIZE, 0,
vmstate_tlb_entry, OpenRISCTLBEntry),
VMSTATE_STRUCT_ARRAY(dtlb, CPUOpenRISCTLBContext, TLB_SIZE, 0,
@@ -71,7 +71,7 @@ static const VMStateDescription vmstate_env = {
.name = "env",
.version_id = 6,
.minimum_version_id = 6,
- .fields = (VMStateField[]) {
+ .fields = (const VMStateField[]) {
VMSTATE_UINTTL_2DARRAY(shadow_gpr, CPUOpenRISCState, 16, 32),
VMSTATE_UINTTL(pc, CPUOpenRISCState),
VMSTATE_UINTTL(ppc, CPUOpenRISCState),
@@ -135,7 +135,7 @@ const VMStateDescription vmstate_openrisc_cpu = {
.version_id = 1,
.minimum_version_id = 1,
.post_load = cpu_post_load,
- .fields = (VMStateField[]) {
+ .fields = (const VMStateField[]) {
VMSTATE_CPU(),
VMSTATE_STRUCT(env, OpenRISCCPU, 1, vmstate_env, CPUOpenRISCState),
VMSTATE_END_OF_LIST()
--
2.34.1
- Re: [PATCH 05/71] target/avr: Constify VMState in machine.c, (continued)
- [PATCH 07/71] target/hppa: Constify VMState in machine.c, Richard Henderson, 2023/11/06
- [PATCH 08/71] target/i386: Constify VMState in machine.c, Richard Henderson, 2023/11/06
- [PATCH 09/71] target/loongarch: Constify VMState in machine.c, Richard Henderson, 2023/11/06
- [PATCH 06/71] target/cris: Constify VMState in machine.c, Richard Henderson, 2023/11/06
- [PATCH 11/71] target/microblaze: Constify VMState in machine.c, Richard Henderson, 2023/11/06
- [PATCH 12/71] target/mips: Constify VMState in machine.c, Richard Henderson, 2023/11/06
- [PATCH 13/71] target/openrisc: Constify VMState in machine.c,
Richard Henderson <=
- [PATCH 14/71] target/ppc: Constify VMState in machine.c, Richard Henderson, 2023/11/06
- [PATCH 16/71] target/s390x: Constify VMState in machine.c, Richard Henderson, 2023/11/06
- [PATCH 10/71] target/m68k: Constify VMState in machine.c, Richard Henderson, 2023/11/06
- [PATCH 19/71] hw/core: Constify VMState, Richard Henderson, 2023/11/06
- [PATCH 21/71] hw/acpi: Constify VMState, Richard Henderson, 2023/11/06
- [PATCH 18/71] hw/arm: Constify VMState, Richard Henderson, 2023/11/06
- [PATCH 28/71] hw/gpio: Constify VMState, Richard Henderson, 2023/11/06
- [PATCH 38/71] hw/loongarch: Constify VMState, Richard Henderson, 2023/11/06