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/ibex_spi_host.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/ibex_spi_host.c')
| -rw-r--r-- | hw/ssi/ibex_spi_host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ssi/ibex_spi_host.c b/hw/ssi/ibex_spi_host.c index 9e07432f7c..60a0b17b62 100644 --- a/hw/ssi/ibex_spi_host.c +++ b/hw/ssi/ibex_spi_host.c @@ -561,7 +561,7 @@ static const MemoryRegionOps ibex_spi_ops = { .endianness = DEVICE_LITTLE_ENDIAN, }; -static Property ibex_spi_properties[] = { +static const Property ibex_spi_properties[] = { DEFINE_PROP_UINT32("num_cs", IbexSPIHostState, num_cs, 1), DEFINE_PROP_END_OF_LIST(), }; |