diff options
author | Joerg Roedel <joerg.roedel@amd.com> | 2008-11-26 15:51:19 +0100 |
---|---|---|
committer | Joerg Roedel <joerg.roedel@amd.com> | 2009-01-03 14:10:09 +0100 |
commit | c4fa3864281c7d88b7262cbc6cbd5c90bb59860e (patch) | |
tree | 21209dceb4d978e24a009b848115d0d8bea0cbcc /arch/x86/kvm/Makefile | |
parent | b653574a7d14b663cc812cb20be6a114939ba186 (diff) | |
download | kernel-crypto-c4fa3864281c7d88b7262cbc6cbd5c90bb59860e.tar.gz kernel-crypto-c4fa3864281c7d88b7262cbc6cbd5c90bb59860e.tar.xz kernel-crypto-c4fa3864281c7d88b7262cbc6cbd5c90bb59860e.zip |
KVM: rename vtd.c to iommu.c
Impact: file renamed
The code in the vtd.c file can be reused for other IOMMUs as well. So
rename it to make it clear that it handle more than VT-d.
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Diffstat (limited to 'arch/x86/kvm/Makefile')
-rw-r--r-- | arch/x86/kvm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/Makefile b/arch/x86/kvm/Makefile index c02343594b4..00f46c2d14b 100644 --- a/arch/x86/kvm/Makefile +++ b/arch/x86/kvm/Makefile @@ -8,7 +8,7 @@ ifeq ($(CONFIG_KVM_TRACE),y) common-objs += $(addprefix ../../../virt/kvm/, kvm_trace.o) endif ifeq ($(CONFIG_DMAR),y) -common-objs += $(addprefix ../../../virt/kvm/, vtd.o) +common-objs += $(addprefix ../../../virt/kvm/, iommu.o) endif EXTRA_CFLAGS += -Ivirt/kvm -Iarch/x86/kvm |