diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 15:25:18 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:54:47 -0600 |
| commit | 804467e148a254a503834a2c712cad827f6f4b25 (patch) | |
| tree | 36f955f79a4e51b0e639aa8f4f819c5539fffeaa /hw/cpu/a9mpcore.c | |
| parent | f5ca2d6233c88464bcf2616bc8697247cb57bcc5 (diff) | |
| download | focaccia-qemu-804467e148a254a503834a2c712cad827f6f4b25.tar.gz focaccia-qemu-804467e148a254a503834a2c712cad827f6f4b25.zip | |
hw/cpu: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/cpu/a9mpcore.c')
| -rw-r--r-- | hw/cpu/a9mpcore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/cpu/a9mpcore.c b/hw/cpu/a9mpcore.c index c30ef72c66..c3fdfb92e1 100644 --- a/hw/cpu/a9mpcore.c +++ b/hw/cpu/a9mpcore.c @@ -158,7 +158,7 @@ static void a9mp_priv_realize(DeviceState *dev, Error **errp) } } -static Property a9mp_priv_properties[] = { +static const Property a9mp_priv_properties[] = { DEFINE_PROP_UINT32("num-cpu", A9MPPrivState, num_cpu, 1), /* The Cortex-A9MP may have anything from 0 to 224 external interrupt * IRQ lines (with another 32 internal). We default to 64+32, which |