diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 16:35:23 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:55:54 -0600 |
| commit | 909a5c0afa1dd52e8145716fc36d12ba6b74721f (patch) | |
| tree | 4248ee972087bc819f2706fdc0e483dc573aa53d /hw/pci-host/dino.c | |
| parent | 196fd15f31d986e5a9c5da84988fa4597f30623b (diff) | |
| download | focaccia-qemu-909a5c0afa1dd52e8145716fc36d12ba6b74721f.tar.gz focaccia-qemu-909a5c0afa1dd52e8145716fc36d12ba6b74721f.zip | |
hw/pci-host: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/pci-host/dino.c')
| -rw-r--r-- | hw/pci-host/dino.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pci-host/dino.c b/hw/pci-host/dino.c index 283fc0dc57..ead9893f21 100644 --- a/hw/pci-host/dino.c +++ b/hw/pci-host/dino.c @@ -492,7 +492,7 @@ static void dino_pcihost_init(Object *obj) qdev_init_gpio_in(DEVICE(obj), dino_set_irq, DINO_IRQS); } -static Property dino_pcihost_properties[] = { +static const Property dino_pcihost_properties[] = { DEFINE_PROP_LINK("memory-as", DinoState, memory_as, TYPE_MEMORY_REGION, MemoryRegion *), DEFINE_PROP_END_OF_LIST(), |