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/versatile.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/versatile.c')
| -rw-r--r-- | hw/pci-host/versatile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pci-host/versatile.c b/hw/pci-host/versatile.c index d257acee17..5d59640691 100644 --- a/hw/pci-host/versatile.c +++ b/hw/pci-host/versatile.c @@ -498,7 +498,7 @@ static const TypeInfo versatile_pci_host_info = { }, }; -static Property pci_vpb_properties[] = { +static const Property pci_vpb_properties[] = { DEFINE_PROP_UINT8("broken-irq-mapping", PCIVPBState, irq_mapping_prop, PCI_VPB_IRQMAP_ASSUME_OK), DEFINE_PROP_END_OF_LIST() |