diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-01 16:07:32 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:31:38 -0400 |
commit | 08a999ce69c17802d92ad760faa21ce112968172 (patch) | |
tree | d3ddf28e5b383cc07ecfb54e115dcaca9584e04b | |
parent | 1b6bc32f0a7380102499deb6aa99a59e789efb33 (diff) | |
download | linux-3.10-08a999ce69c17802d92ad760faa21ce112968172.tar.gz linux-3.10-08a999ce69c17802d92ad760faa21ce112968172.tar.bz2 linux-3.10-08a999ce69c17802d92ad760faa21ce112968172.zip |
drivers/base: dma-coherent.c is a module and needs module.h
It was implicitly getting it before, but it will break compiles
once we fix that.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
-rw-r--r-- | drivers/base/dma-coherent.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/base/dma-coherent.c b/drivers/base/dma-coherent.c index f369e279598..bb0025c510b 100644 --- a/drivers/base/dma-coherent.c +++ b/drivers/base/dma-coherent.c @@ -4,6 +4,7 @@ */ #include <linux/slab.h> #include <linux/kernel.h> +#include <linux/module.h> #include <linux/dma-mapping.h> struct dma_coherent_mem { |