summary refs log tree commit diff
path: root/arch/ia64/kvm
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2008-11-04 11:25:17 +0200
committerAvi Kivity <avi@redhat.com>2008-11-11 20:56:13 +0200
commitca93e992fdfdc6569ac2845d7560eeb5de4a4e0b (patch)
treeaa5c11b0bded1b7ccb02d17d0171f3eb2e3bc375 /arch/ia64/kvm
parenta29a2af378f3f6362b68e126e2541c8bde885ead (diff)
downloadlinux-ca93e992fdfdc6569ac2845d7560eeb5de4a4e0b.tar.gz
KVM: Require the PCI subsystem
PCI device assignment makes calls to pci code, so require it to be built
into the kernel.

Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'arch/ia64/kvm')
-rw-r--r--arch/ia64/kvm/Kconfig2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/ia64/kvm/Kconfig b/arch/ia64/kvm/Kconfig
index 8e99fed6b3fd..f833a0b4188d 100644
--- a/arch/ia64/kvm/Kconfig
+++ b/arch/ia64/kvm/Kconfig
@@ -20,6 +20,8 @@ if VIRTUALIZATION
 config KVM
 	tristate "Kernel-based Virtual Machine (KVM) support"
 	depends on HAVE_KVM && EXPERIMENTAL
+	# for device assignment:
+	depends on PCI
 	select PREEMPT_NOTIFIERS
 	select ANON_INODES
 	---help---