mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
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>
This commit is contained in:
parent
070297d260
commit
c469e1dd63
3 changed files with 7 additions and 7 deletions
|
@ -113,7 +113,7 @@ void drive_hot_add(Monitor *mon, const QDict *qdict)
|
|||
if (pci_read_devaddr(mon, pci_addr, &dom, &pci_bus, &slot)) {
|
||||
goto err;
|
||||
}
|
||||
dev = pci_find_device(pci_find_host_bus(0), pci_bus, slot, 0);
|
||||
dev = pci_find_device(pci_find_root_bus(0), pci_bus, slot, 0);
|
||||
if (!dev) {
|
||||
monitor_printf(mon, "no pci device with address %s\n", pci_addr);
|
||||
goto err;
|
||||
|
@ -257,7 +257,7 @@ void pci_device_hot_remove(Monitor *mon, const char *pci_addr)
|
|||
return;
|
||||
}
|
||||
|
||||
d = pci_find_device(pci_find_host_bus(0), bus, slot, 0);
|
||||
d = pci_find_device(pci_find_root_bus(0), bus, slot, 0);
|
||||
if (!d) {
|
||||
monitor_printf(mon, "slot %d empty\n", slot);
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue