diff options
author | Michal Simek <michal.simek@xilinx.com> | 2013-02-01 13:10:35 +0100 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2013-02-12 11:24:45 +0100 |
commit | d64af918feb6cb81c396d6d2dabb738bc51dda3f (patch) | |
tree | a13ce75ae3e54e177a6219a3961f90f7c3aa861e /arch/microblaze/mm | |
parent | 6bd55f0bbaebb79b39e147aa864401fd0c94db82 (diff) | |
download | linux-3.10-d64af918feb6cb81c396d6d2dabb738bc51dda3f.tar.gz linux-3.10-d64af918feb6cb81c396d6d2dabb738bc51dda3f.tar.bz2 linux-3.10-d64af918feb6cb81c396d6d2dabb738bc51dda3f.zip |
microblaze: Do not use module.h in files which are not modules
Based on the patch:
"lib: reduce the use of module.h wherever possible"
(sha1: 8bc3bcc93a2b4e47d5d410146f6546bca6171663)
fix all microblaze files which are not modules.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch/microblaze/mm')
-rw-r--r-- | arch/microblaze/mm/consistent.c | 2 | ||||
-rw-r--r-- | arch/microblaze/mm/highmem.c | 2 | ||||
-rw-r--r-- | arch/microblaze/mm/pgtable.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/arch/microblaze/mm/consistent.c b/arch/microblaze/mm/consistent.c index fe5fcdb5df5..5226b09cbbb 100644 --- a/arch/microblaze/mm/consistent.c +++ b/arch/microblaze/mm/consistent.c @@ -13,7 +13,7 @@ * published by the Free Software Foundation. */ -#include <linux/module.h> +#include <linux/export.h> #include <linux/signal.h> #include <linux/sched.h> #include <linux/kernel.h> diff --git a/arch/microblaze/mm/highmem.c b/arch/microblaze/mm/highmem.c index 7d78838e8bf..5a92576fad9 100644 --- a/arch/microblaze/mm/highmem.c +++ b/arch/microblaze/mm/highmem.c @@ -20,8 +20,8 @@ * highmem.h by Benjamin Herrenschmidt (c) 2009 IBM Corp. */ +#include <linux/export.h> #include <linux/highmem.h> -#include <linux/module.h> /* * The use of kmap_atomic/kunmap_atomic is discouraged - kmap/kunmap diff --git a/arch/microblaze/mm/pgtable.c b/arch/microblaze/mm/pgtable.c index 1888b0f5056..10b3bd0a980 100644 --- a/arch/microblaze/mm/pgtable.c +++ b/arch/microblaze/mm/pgtable.c @@ -26,8 +26,8 @@ * */ +#include <linux/export.h> #include <linux/kernel.h> -#include <linux/module.h> #include <linux/types.h> #include <linux/vmalloc.h> #include <linux/init.h> |