diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 16:15:59 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:55:39 -0600 |
| commit | 30029973103ac7f7ffb7bce0f088b773ad9f5dae (patch) | |
| tree | 924ee7b9dec346b9a2e51482ceac64f61f378b13 /hw/misc/stm32l4x5_rcc.c | |
| parent | 56d8d2b34288c3ea6b62d9e0069cc927d542ea93 (diff) | |
| download | focaccia-qemu-30029973103ac7f7ffb7bce0f088b773ad9f5dae.tar.gz focaccia-qemu-30029973103ac7f7ffb7bce0f088b773ad9f5dae.zip | |
hw/misc: 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/misc/stm32l4x5_rcc.c')
| -rw-r--r-- | hw/misc/stm32l4x5_rcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/misc/stm32l4x5_rcc.c b/hw/misc/stm32l4x5_rcc.c index 59d428fa66..b61241d195 100644 --- a/hw/misc/stm32l4x5_rcc.c +++ b/hw/misc/stm32l4x5_rcc.c @@ -1426,7 +1426,7 @@ static void stm32l4x5_rcc_realize(DeviceState *dev, Error **errp) clock_update(s->gnd, 0); } -static Property stm32l4x5_rcc_properties[] = { +static const Property stm32l4x5_rcc_properties[] = { DEFINE_PROP_UINT64("hse_frequency", Stm32l4x5RccState, hse_frequency, HSE_DEFAULT_FRQ), DEFINE_PROP_UINT64("sai1_extclk_frequency", Stm32l4x5RccState, |