diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2023-12-21 14:16:33 +1100 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2023-12-30 07:38:06 +1100 |
| commit | 307119ba50031be7553781a8a71aae38d798a7b3 (patch) | |
| tree | 6f93360602eab1e3b7b4909edaf9dd959e4bc244 /hw/sd/cadence_sdhci.c | |
| parent | 2d7b39a64f785999f1225380ec3ad1e89922226d (diff) | |
| download | focaccia-qemu-307119ba50031be7553781a8a71aae38d798a7b3.tar.gz focaccia-qemu-307119ba50031be7553781a8a71aae38d798a7b3.zip | |
hw/sd: 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-53-richard.henderson@linaro.org>
Diffstat (limited to 'hw/sd/cadence_sdhci.c')
| -rw-r--r-- | hw/sd/cadence_sdhci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/sd/cadence_sdhci.c b/hw/sd/cadence_sdhci.c index ef4e0d74e3..7c8bc5464b 100644 --- a/hw/sd/cadence_sdhci.c +++ b/hw/sd/cadence_sdhci.c @@ -159,7 +159,7 @@ static void cadence_sdhci_realize(DeviceState *dev, Error **errp) static const VMStateDescription vmstate_cadence_sdhci = { .name = TYPE_CADENCE_SDHCI, .version_id = 1, - .fields = (VMStateField[]) { + .fields = (const VMStateField[]) { VMSTATE_UINT32_ARRAY(regs, CadenceSDHCIState, CADENCE_SDHCI_NUM_REGS), VMSTATE_END_OF_LIST(), }, |