diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 15:51:35 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:55:19 -0600 |
| commit | 7f68219cc7b15df35f0543a3d9824584480077eb (patch) | |
| tree | 0d48668a1200bfc8c7f5584fd7f88d9de8175e88 /hw/isa/lpc_ich9.c | |
| parent | 2acf140305ed957f945e09ca7667ad872a091958 (diff) | |
| download | focaccia-qemu-7f68219cc7b15df35f0543a3d9824584480077eb.tar.gz focaccia-qemu-7f68219cc7b15df35f0543a3d9824584480077eb.zip | |
hw/isa: Constify all Property
Reviewed-by: Bernhard Beschow <shentey@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/isa/lpc_ich9.c')
| -rw-r--r-- | hw/isa/lpc_ich9.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/isa/lpc_ich9.c b/hw/isa/lpc_ich9.c index dabd1217dd..378244aa8f 100644 --- a/hw/isa/lpc_ich9.c +++ b/hw/isa/lpc_ich9.c @@ -826,7 +826,7 @@ static const VMStateDescription vmstate_ich9_lpc = { } }; -static Property ich9_lpc_properties[] = { +static const Property ich9_lpc_properties[] = { DEFINE_PROP_BOOL("noreboot", ICH9LPCState, pin_strap.spkr_hi, false), DEFINE_PROP_BOOL("smm-compat", ICH9LPCState, pm.smm_compat, false), DEFINE_PROP_BOOL("smm-enabled", ICH9LPCState, pm.smm_enabled, false), |