pci_bridge: rename PCIBridge::bus -> PCIBridge::sec_bus.

To avoid confusion of primary bus with secondary bus,
rename PCIBridge::bus to PCIBridge::sec_bus.

Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
Isaku Yamahata 2010-07-13 13:01:40 +09:00 committed by Michael S. Tsirkin
parent 783753fd53
commit 7e98e3af4e
2 changed files with 5 additions and 7 deletions

View file

@ -32,7 +32,7 @@ struct PCIBus {
typedef struct {
PCIDevice dev;
PCIBus bus;
PCIBus sec_bus;
uint32_t vid;
uint32_t did;
} PCIBridge;