mirror of
https://github.com/qemu/qemu.git
synced 2024-11-26 04:13:39 +08:00
pci: vmstate_register() already assign consecutive numbers starting at 0
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
33599e2a61
commit
5084bca17f
4
hw/pci.c
4
hw/pci.c
@ -161,8 +161,6 @@ PCIBus *pci_find_root_bus(int domain)
|
||||
void pci_bus_new_inplace(PCIBus *bus, DeviceState *parent,
|
||||
const char *name, int devfn_min)
|
||||
{
|
||||
static int nbus = 0;
|
||||
|
||||
qbus_create_inplace(&bus->qbus, &pci_bus_info, parent, name);
|
||||
bus->devfn_min = devfn_min;
|
||||
|
||||
@ -170,7 +168,7 @@ void pci_bus_new_inplace(PCIBus *bus, DeviceState *parent,
|
||||
QLIST_INIT(&bus->child);
|
||||
pci_host_bus_register(0, bus); /* for now only pci domain 0 is supported */
|
||||
|
||||
vmstate_register(nbus++, &vmstate_pcibus, bus);
|
||||
vmstate_register(-1, &vmstate_pcibus, bus);
|
||||
qemu_register_reset(pci_bus_reset, bus);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user