From: Paul Gortmaker Date: Wed, 29 Feb 2012 00:24:48 +0000 (-0500) Subject: MIPS: Don't use module.h just to export symbols in asm/uasm.h X-Git-Tag: Ubuntu-5.2.0-15.16~17913^2^4 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=baab01b26685b8f0af9092aaee73d8a70c31e55c;p=mirror_ubuntu-eoan-kernel.git 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 Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/3450/ Signed-off-by: Ralf Baechle --- 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 @@ #include #ifdef CONFIG_EXPORT_UASM -#include +#include #define __uasminit #define __uasminitdata #define UASM_EXPORT_SYMBOL(sym) EXPORT_SYMBOL(sym)