mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
pci: do not export pci_bus_reset
qbus_reset_all can be used instead. There is no semantic change because pcibus_reset returns 1 and takes care of the device tree traversal. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
aef52ee87f
commit
81e3e75b64
3 changed files with 3 additions and 8 deletions
|
@ -212,8 +212,9 @@ void pci_device_reset(PCIDevice *dev)
|
|||
* Trigger pci bus reset under a given bus.
|
||||
* To be called on RST# assert.
|
||||
*/
|
||||
void pci_bus_reset(PCIBus *bus)
|
||||
static int pcibus_reset(BusState *qbus)
|
||||
{
|
||||
PCIBus *bus = DO_UPCAST(PCIBus, qbus, qbus);
|
||||
int i;
|
||||
|
||||
for (i = 0; i < bus->nirq; i++) {
|
||||
|
@ -224,11 +225,6 @@ void pci_bus_reset(PCIBus *bus)
|
|||
pci_device_reset(bus->devices[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static int pcibus_reset(BusState *qbus)
|
||||
{
|
||||
pci_bus_reset(DO_UPCAST(PCIBus, qbus, qbus));
|
||||
|
||||
/* topology traverse is done by pci_bus_reset().
|
||||
Tell qbus/qdev walker not to traverse the tree */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue