diff options
author | Michal Simek <michal.simek@xilinx.com> | 2013-02-01 16:10:35 +0400 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2013-02-12 14:24:45 +0400 |
commit | d64af918feb6cb81c396d6d2dabb738bc51dda3f (patch) | |
tree | a13ce75ae3e54e177a6219a3961f90f7c3aa861e /arch/microblaze/kernel/module.c | |
parent | 6bd55f0bbaebb79b39e147aa864401fd0c94db82 (diff) | |
download | linux-d64af918feb6cb81c396d6d2dabb738bc51dda3f.tar.xz |
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/kernel/module.c')
-rw-r--r-- | arch/microblaze/kernel/module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/kernel/module.c b/arch/microblaze/kernel/module.c index f0f43688a0c6..182e6be856cd 100644 --- a/arch/microblaze/kernel/module.c +++ b/arch/microblaze/kernel/module.c @@ -7,7 +7,7 @@ * published by the Free Software Foundation. */ -#include <linux/module.h> +#include <linux/export.h> #include <linux/moduleloader.h> #include <linux/kernel.h> #include <linux/elf.h> |