diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2012-02-28 19:24:48 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2012-05-15 11:48:51 -0400 |
commit | baab01b26685b8f0af9092aaee73d8a70c31e55c (patch) | |
tree | a2b90fe93d2c7d124d911887181768772e678654 | |
parent | 4ca98d399e66899222f1d457731b7857e85e09f1 (diff) |
MIPS: Don't use module.h just to export symbols in asm/uasm.h
Putting module.h into widely used headers just bogs cpp down with reams of
stuff that isn't needed. Here, we only need visibility to EXPORT_SYMBOL.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/3450/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/include/asm/uasm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/include/asm/uasm.h b/arch/mips/include/asm/uasm.h index 504d40aedfae..440a21dab575 100644 --- a/arch/mips/include/asm/uasm.h +++ b/arch/mips/include/asm/uasm.h | |||
@@ -11,7 +11,7 @@ | |||
11 | #include <linux/types.h> | 11 | #include <linux/types.h> |
12 | 12 | ||
13 | #ifdef CONFIG_EXPORT_UASM | 13 | #ifdef CONFIG_EXPORT_UASM |
14 | #include <linux/module.h> | 14 | #include <linux/export.h> |
15 | #define __uasminit | 15 | #define __uasminit |
16 | #define __uasminitdata | 16 | #define __uasminitdata |
17 | #define UASM_EXPORT_SYMBOL(sym) EXPORT_SYMBOL(sym) | 17 | #define UASM_EXPORT_SYMBOL(sym) EXPORT_SYMBOL(sym) |