diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 15:23:44 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:54:44 -0600 |
| commit | f5ca2d6233c88464bcf2616bc8697247cb57bcc5 (patch) | |
| tree | e284a811764c303461116d526eb2d2edae1afdf3 /hw/core/split-irq.c | |
| parent | 312f37d18ad53e2e62fdd2dda7c38322866d77f1 (diff) | |
| download | focaccia-qemu-f5ca2d6233c88464bcf2616bc8697247cb57bcc5.tar.gz focaccia-qemu-f5ca2d6233c88464bcf2616bc8697247cb57bcc5.zip | |
hw/core: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/core/split-irq.c')
| -rw-r--r-- | hw/core/split-irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/core/split-irq.c b/hw/core/split-irq.c index 3b90af2e8f..40fc7e2e77 100644 --- a/hw/core/split-irq.c +++ b/hw/core/split-irq.c @@ -59,7 +59,7 @@ static void split_irq_realize(DeviceState *dev, Error **errp) qdev_init_gpio_out(dev, s->out_irq, s->num_lines); } -static Property split_irq_properties[] = { +static const Property split_irq_properties[] = { DEFINE_PROP_UINT16("num-lines", SplitIRQ, num_lines, 1), DEFINE_PROP_END_OF_LIST(), }; |