From: Paul Gortmaker Date: Thu, 28 Jul 2011 01:25:05 +0000 (-0400) Subject: kvm: iommu.c file requires the full module.h present. X-Git-Tag: next-20110829~4^2~29 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=963c64d1438049cc28b6ddcd08e890ec30862704;p=karo-tx-linux.git kvm: iommu.c file requires the full module.h present. This file has things like module_param_named() and MODULE_PARM_DESC() so it needs the full module.h header present. Without it, you'll get: CC arch/x86/kvm/../../../virt/kvm/iommu.o virt/kvm/iommu.c:37: error: expected ‘)’ before ‘bool’ virt/kvm/iommu.c:39: error: expected ‘)’ before string constant make[3]: *** [arch/x86/kvm/../../../virt/kvm/iommu.o] Error 1 make[2]: *** [arch/x86/kvm] Error 2 Signed-off-by: Paul Gortmaker --- diff --git a/virt/kvm/iommu.c b/virt/kvm/iommu.c index bea8719fcc8d..5920a7e1b2a9 100644 --- a/virt/kvm/iommu.c +++ b/virt/kvm/iommu.c @@ -25,6 +25,7 @@ #include #include +#include #include #include #include