aboutsummaryrefslogtreecommitdiffstats
path: root/arch/microblaze/kernel/exceptions.c
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2013-02-01 07:10:35 -0500
committerMichal Simek <michal.simek@xilinx.com>2013-02-12 05:24:45 -0500
commitd64af918feb6cb81c396d6d2dabb738bc51dda3f (patch)
treea13ce75ae3e54e177a6219a3961f90f7c3aa861e /arch/microblaze/kernel/exceptions.c
parent6bd55f0bbaebb79b39e147aa864401fd0c94db82 (diff)
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/exceptions.c')
-rw-r--r--arch/microblaze/kernel/exceptions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/kernel/exceptions.c b/arch/microblaze/kernel/exceptions.c
index d6edf5d39cfa..42dd12a62ff5 100644
--- a/arch/microblaze/kernel/exceptions.c
+++ b/arch/microblaze/kernel/exceptions.c
@@ -13,11 +13,11 @@
13 * This file handles the architecture-dependent parts of hardware exceptions 13 * This file handles the architecture-dependent parts of hardware exceptions
14 */ 14 */
15 15
16#include <linux/export.h>
16#include <linux/kernel.h> 17#include <linux/kernel.h>
17#include <linux/signal.h> 18#include <linux/signal.h>
18#include <linux/sched.h> 19#include <linux/sched.h>
19#include <linux/kallsyms.h> 20#include <linux/kallsyms.h>
20#include <linux/module.h>
21 21
22#include <asm/exceptions.h> 22#include <asm/exceptions.h>
23#include <asm/entry.h> /* For KM CPU var */ 23#include <asm/entry.h> /* For KM CPU var */