diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 16:51:05 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:56:22 -0600 |
| commit | dc418eb22028d1f6181e2436c27fcdc3ad0b56a1 (patch) | |
| tree | 991dd6f4ca010c9c4d359c18e4d3afe6553df1a4 /hw/ssi/xlnx-versal-ospi.c | |
| parent | 4aa3a8a89af9fced00269d5781c78e23f79a333b (diff) | |
| download | focaccia-qemu-dc418eb22028d1f6181e2436c27fcdc3ad0b56a1.tar.gz focaccia-qemu-dc418eb22028d1f6181e2436c27fcdc3ad0b56a1.zip | |
hw/ssi: Constify all Property
Reviewed-by: Cédric Le Goater <clg@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/ssi/xlnx-versal-ospi.c')
| -rw-r--r-- | hw/ssi/xlnx-versal-ospi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ssi/xlnx-versal-ospi.c b/hw/ssi/xlnx-versal-ospi.c index ecc1903b8e..e51abe9de2 100644 --- a/hw/ssi/xlnx-versal-ospi.c +++ b/hw/ssi/xlnx-versal-ospi.c @@ -1825,7 +1825,7 @@ static const VMStateDescription vmstate_xlnx_versal_ospi = { } }; -static Property xlnx_versal_ospi_properties[] = { +static const Property xlnx_versal_ospi_properties[] = { DEFINE_PROP_BOOL("dac-with-indac", XlnxVersalOspi, dac_with_indac, false), DEFINE_PROP_BOOL("indac-write-disabled", XlnxVersalOspi, ind_write_disabled, false), |