diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2009-05-06 16:03:07 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-05-06 16:36:10 -0700 |
commit | 60db402780ec257b287de591d65157575952bb4a (patch) | |
tree | bd33672a9ee16e422342c67faafa080d42075a72 | |
parent | a1e6b6c1a676d25acdf079ee8ab5cdfeb5e5b835 (diff) | |
download | linux-3.10-60db402780ec257b287de591d65157575952bb4a.tar.gz linux-3.10-60db402780ec257b287de591d65157575952bb4a.tar.bz2 linux-3.10-60db402780ec257b287de591d65157575952bb4a.zip |
drivers/base/iommu.c: add missing includes
Fix zillions of -mm x86_64 allmodconfig build errors - the file uses
EXPORT_SYMBOL() and kmalloc but misses the needed includes.
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: Joerg Roedel <joerg.roedel@amd.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/base/iommu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/base/iommu.c b/drivers/base/iommu.c index 9f0e672f4be..8ad4ffea692 100644 --- a/drivers/base/iommu.c +++ b/drivers/base/iommu.c @@ -18,6 +18,8 @@ #include <linux/bug.h> #include <linux/types.h> +#include <linux/module.h> +#include <linux/slab.h> #include <linux/errno.h> #include <linux/iommu.h> |