diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-01-10 17:01:57 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2025-01-27 14:28:12 +0000 |
commit | 87409ea90408938d55a37652968f2855954bada1 (patch) | |
tree | e20fff78df1f1f5abd7e77318950cd8b3161abda | |
parent | 82634b58bc2dc32489cdf8e04af5b61bea4efb9a (diff) | |
download | qemu-87409ea90408938d55a37652968f2855954bada1.zip qemu-87409ea90408938d55a37652968f2855954bada1.tar.gz qemu-87409ea90408938d55a37652968f2855954bada1.tar.bz2 |
hw/arm/stellaris: Constify read-only arrays
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20250110160204.74997-3-philmd@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | hw/arm/stellaris.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/arm/stellaris.c b/hw/arm/stellaris.c index 3f525d2..42498cc 100644 --- a/hw/arm/stellaris.c +++ b/hw/arm/stellaris.c @@ -101,7 +101,7 @@ static void ssys_update(ssys_state *s) qemu_set_irq(s->irq, (s->int_status & s->int_mask) != 0); } -static uint32_t pllcfg_sandstorm[16] = { +static const uint32_t pllcfg_sandstorm[16] = { 0x31c0, /* 1 Mhz */ 0x1ae0, /* 1.8432 Mhz */ 0x18c0, /* 2 Mhz */ @@ -120,7 +120,7 @@ static uint32_t pllcfg_sandstorm[16] = { 0x585b /* 8.192 Mhz */ }; -static uint32_t pllcfg_fury[16] = { +static const uint32_t pllcfg_fury[16] = { 0x3200, /* 1 Mhz */ 0x1b20, /* 1.8432 Mhz */ 0x1900, /* 2 Mhz */ @@ -964,7 +964,7 @@ static void stellaris_adc_init(Object *obj) } /* Board init. */ -static stellaris_board_info stellaris_boards[] = { +static const stellaris_board_info stellaris_boards[] = { { "LM3S811EVB", 0, 0x0032000e, |