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/pc87312.c | |
parent | 2acf140305ed957f945e09ca7667ad872a091958 (diff) | |
download | qemu-7f68219cc7b15df35f0543a3d9824584480077eb.zip qemu-7f68219cc7b15df35f0543a3d9824584480077eb.tar.gz qemu-7f68219cc7b15df35f0543a3d9824584480077eb.tar.bz2 |
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/pc87312.c')
-rw-r--r-- | hw/isa/pc87312.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/isa/pc87312.c b/hw/isa/pc87312.c index f671554..7bb2af8 100644 --- a/hw/isa/pc87312.c +++ b/hw/isa/pc87312.c @@ -327,7 +327,7 @@ static const VMStateDescription vmstate_pc87312 = { } }; -static Property pc87312_properties[] = { +static const Property pc87312_properties[] = { DEFINE_PROP_UINT16("iobase", PC87312State, iobase, 0x398), DEFINE_PROP_UINT8("config", PC87312State, config, 1), DEFINE_PROP_END_OF_LIST() |