aboutsummaryrefslogtreecommitdiff
path: root/hw/pci.h
diff options
context:
space:
mode:
authorIsaku Yamahata <yamahata@valinux.co.jp>2009-11-12 14:58:36 +0900
committerMichael S. Tsirkin <mst@redhat.com>2009-12-01 17:51:49 +0200
commitc469e1dd6375c50bc61d995dde4714fc19f411ed (patch)
tree0050257288eef2f3a6b17d34048ed9e097f8a19d /hw/pci.h
parent070297d2609fea4fd7afec05eb9a43688b91fb79 (diff)
downloadqemu-c469e1dd6375c50bc61d995dde4714fc19f411ed.zip
qemu-c469e1dd6375c50bc61d995dde4714fc19f411ed.tar.gz
qemu-c469e1dd6375c50bc61d995dde4714fc19f411ed.tar.bz2
pci: s/pci_find_host_bus/pci_find_root_bus/g
This patch renames pci_find_host_bus() to pci_find_root_bus() as suggested by "Michael S. Tsirkin" <mst@redhat.com>. Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/pci.h')
-rw-r--r--hw/pci.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pci.h b/hw/pci.h
index 2f21352..ff5f36c 100644
--- a/hw/pci.h
+++ b/hw/pci.h
@@ -295,7 +295,7 @@ PCIDevice *pci_nic_init_nofail(NICInfo *nd, const char *default_model,
const char *default_devaddr);
int pci_bus_num(PCIBus *s);
void pci_for_each_device(PCIBus *bus, int bus_num, void (*fn)(PCIBus *bus, PCIDevice *d));
-PCIBus *pci_find_host_bus(int domain);
+PCIBus *pci_find_root_bus(int domain);
PCIBus *pci_find_bus(PCIBus *bus, int bus_num);
PCIDevice *pci_find_device(PCIBus *bus, int bus_num, int slot, int function);
PCIBus *pci_get_bus_devfn(int *devfnp, const char *devaddr);