diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2010-07-13 13:01:40 +0900 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2010-07-22 12:21:34 +0300 |
commit | 7e98e3af4e7454d53707b7b4d16b6e9bd5c21334 (patch) | |
tree | cee2cd4b7b7a9169771686456668e655e05afd34 /hw/pci_internals.h | |
parent | 783753fd53fe513d37fbbfe6694c0c1ab9701fd1 (diff) |
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>
Diffstat (limited to 'hw/pci_internals.h')
-rw-r--r-- | hw/pci_internals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pci_internals.h b/hw/pci_internals.h index 8a3026bdaf..fa844abee1 100644 --- a/hw/pci_internals.h +++ b/hw/pci_internals.h @@ -32,7 +32,7 @@ struct PCIBus { typedef struct { PCIDevice dev; - PCIBus bus; + PCIBus sec_bus; uint32_t vid; uint32_t did; } PCIBridge; |