Skip to content

Commit

Permalink
hw/pci-bridge: add macro for "chassis_nr" property
Browse files Browse the repository at this point in the history
This should help catch property name typos at compile time.

Cc: Michael S. Tsirkin <[email protected]>
Cc: Marcel Apfelbaum <[email protected]>
Signed-off-by: Laszlo Ersek <[email protected]>
Reviewed-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Michael S. Tsirkin <[email protected]>
  • Loading branch information
lersek authored and mstsirkin committed Jun 23, 2015
1 parent 0034e56 commit 3cf0ecb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion hw/pci-bridge/pci_bridge_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
};
Expand Down
3 changes: 2 additions & 1 deletion hw/pci-bridge/pci_expander_bridge.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include "hw/pci/pci_bus.h"
#include "hw/pci/pci_host.h"
#include "hw/pci/pci_bus.h"
#include "hw/pci/pci_bridge.h"
#include "hw/i386/pc.h"
#include "qemu/range.h"
#include "qemu/error-report.h"
Expand Down Expand Up @@ -175,7 +176,7 @@ static int pxb_dev_initfn(PCIDevice *dev)

bds = qdev_create(BUS(bus), "pci-bridge");
bds->id = dev_name;
qdev_prop_set_uint8(bds, "chassis_nr", pxb->bus_nr);
qdev_prop_set_uint8(bds, PCI_BRIDGE_DEV_PROP_CHASSIS_NR, pxb->bus_nr);

PCI_HOST_BRIDGE(ds)->bus = bus;

Expand Down
2 changes: 2 additions & 0 deletions include/hw/pci/pci_bridge.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@

#include "hw/pci/pci.h"

#define PCI_BRIDGE_DEV_PROP_CHASSIS_NR "chassis_nr"

int pci_bridge_ssvid_init(PCIDevice *dev, uint8_t offset,
uint16_t svid, uint16_t ssid);

Expand Down

0 comments on commit 3cf0ecb

Please sign in to comment.