kvm tools: use correct init group for the PCI controller

PCI controller is what deals with PCI devices, and it depends on
vcpus being there, so it should be in the dev_base group.

Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
This commit is contained in:
Sasha Levin
2012-10-24 12:52:26 -04:00
committed by Will Deacon
parent 84eb85ee30
commit bca12bf637
+2 -2
View File
@@ -203,7 +203,7 @@ int pci__init(struct kvm *kvm)
return 0;
}
base_init(pci__init);
dev_base_init(pci__init);
int pci__exit(struct kvm *kvm)
{
@@ -212,4 +212,4 @@ int pci__exit(struct kvm *kvm)
return 0;
}
base_exit(pci__exit);
dev_base_exit(pci__exit);