diff mbox

[1/2] kvm tools: use correct init group for the PCI controller

Message ID 1351097547-15938-1-git-send-email-sasha.levin@oracle.com (mailing list archive)
State New, archived
Headers show

Commit Message

Sasha Levin Oct. 24, 2012, 4:52 p.m. UTC
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>
---
 tools/kvm/pci.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/tools/kvm/pci.c b/tools/kvm/pci.c
index a28b5e2..c77d3cc 100644
--- a/tools/kvm/pci.c
+++ b/tools/kvm/pci.c
@@ -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);