diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-22 19:18:16 +0200 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-11-01 00:30:53 +0100 |
commit | 066bcaca51946c8305e3d637a795e8ccf8dbd3cf (patch) | |
tree | c500a6f3d9b21ddf25ba3dd3e45a6925e44f8e3f /arch/sparc/kernel/nmi.c | |
parent | sparc: add export.h to arch/sparc files as required (diff) | |
download | linux-066bcaca51946c8305e3d637a795e8ccf8dbd3cf.tar.xz linux-066bcaca51946c8305e3d637a795e8ccf8dbd3cf.zip |
sparc: move symbol exporters to use export.h not module.h
Many of the core sparc kernel files are not modules, but just
including module.h for exporting symbols. Now these files can
use the lighter footprint export.h for this role.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'arch/sparc/kernel/nmi.c')
-rw-r--r-- | arch/sparc/kernel/nmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/kernel/nmi.c b/arch/sparc/kernel/nmi.c index 300f810142f5..c76fe0b5bd94 100644 --- a/arch/sparc/kernel/nmi.c +++ b/arch/sparc/kernel/nmi.c @@ -10,7 +10,7 @@ #include <linux/init.h> #include <linux/percpu.h> #include <linux/nmi.h> -#include <linux/module.h> +#include <linux/export.h> #include <linux/kprobes.h> #include <linux/kernel_stat.h> #include <linux/reboot.h> |