diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 15:34:35 +0000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:54:56 -0600 |
commit | de531a6bd46e5a46b4e7a5f7ec66abb4f82e6207 (patch) | |
tree | 2351886d8424ddcb7183e37017a3de2dce08c625 /hw/gpio/imx_gpio.c | |
parent | 7d6a82a3e64d37a83d4ac2fc5234420046523b77 (diff) | |
download | qemu-de531a6bd46e5a46b4e7a5f7ec66abb4f82e6207.zip qemu-de531a6bd46e5a46b4e7a5f7ec66abb4f82e6207.tar.gz qemu-de531a6bd46e5a46b4e7a5f7ec66abb4f82e6207.tar.bz2 |
hw/gpio: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/gpio/imx_gpio.c')
-rw-r--r-- | hw/gpio/imx_gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/gpio/imx_gpio.c b/hw/gpio/imx_gpio.c index 27535a5..919d537 100644 --- a/hw/gpio/imx_gpio.c +++ b/hw/gpio/imx_gpio.c @@ -290,7 +290,7 @@ static const VMStateDescription vmstate_imx_gpio = { } }; -static Property imx_gpio_properties[] = { +static const Property imx_gpio_properties[] = { DEFINE_PROP_BOOL("has-edge-sel", IMXGPIOState, has_edge_sel, true), DEFINE_PROP_BOOL("has-upper-pin-irq", IMXGPIOState, has_upper_pin_irq, false), |