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/pl061.c | |
| parent | 7d6a82a3e64d37a83d4ac2fc5234420046523b77 (diff) | |
| download | focaccia-qemu-de531a6bd46e5a46b4e7a5f7ec66abb4f82e6207.tar.gz focaccia-qemu-de531a6bd46e5a46b4e7a5f7ec66abb4f82e6207.zip | |
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/pl061.c')
| -rw-r--r-- | hw/gpio/pl061.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/gpio/pl061.c b/hw/gpio/pl061.c index d5838b8e98..9b8ca6de32 100644 --- a/hw/gpio/pl061.c +++ b/hw/gpio/pl061.c @@ -562,7 +562,7 @@ static void pl061_realize(DeviceState *dev, Error **errp) } } -static Property pl061_props[] = { +static const Property pl061_props[] = { DEFINE_PROP_UINT32("pullups", PL061State, pullups, 0xff), DEFINE_PROP_UINT32("pulldowns", PL061State, pulldowns, 0x0), DEFINE_PROP_END_OF_LIST() |