diff options
| author | Laszlo Ersek <lersek@redhat.com> | 2015-06-19 04:40:10 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2015-06-23 22:57:47 +0200 |
| commit | 3cf0ecb3c4f9bb6a7a58a62c0209509b4c9d13c6 (patch) | |
| tree | 35afe71a027e7ef2def22ba314a5d5e84a2d6170 /hw/pci-bridge/pci_bridge_dev.c | |
| parent | 0034e56209c1333bfca53356ce82663d801a15c5 (diff) | |
| download | focaccia-qemu-3cf0ecb3c4f9bb6a7a58a62c0209509b4c9d13c6.tar.gz focaccia-qemu-3cf0ecb3c4f9bb6a7a58a62c0209509b4c9d13c6.zip | |
hw/pci-bridge: add macro for "chassis_nr" property
This should help catch property name typos at compile time. Cc: Michael S. Tsirkin <mst@redhat.com> Cc: Marcel Apfelbaum <marcel@redhat.com> Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/pci-bridge/pci_bridge_dev.c')
| -rw-r--r-- | hw/pci-bridge/pci_bridge_dev.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/pci-bridge/pci_bridge_dev.c b/hw/pci-bridge/pci_bridge_dev.c index 44e2cbaf82..c1133c5cca 100644 --- a/hw/pci-bridge/pci_bridge_dev.c +++ b/hw/pci-bridge/pci_bridge_dev.c @@ -123,7 +123,8 @@ static void qdev_pci_bridge_dev_reset(DeviceState *qdev) static Property pci_bridge_dev_properties[] = { /* Note: 0 is not a legal chassis number. */ - DEFINE_PROP_UINT8("chassis_nr", PCIBridgeDev, chassis_nr, 0), + DEFINE_PROP_UINT8(PCI_BRIDGE_DEV_PROP_CHASSIS_NR, PCIBridgeDev, chassis_nr, + 0), DEFINE_PROP_BIT("msi", PCIBridgeDev, flags, PCI_BRIDGE_DEV_F_MSI_REQ, true), DEFINE_PROP_END_OF_LIST(), }; |