From: Paul Gortmaker Date: Tue, 10 Jan 2017 19:13:29 +0000 (-0500) Subject: arc: migrate exception table users off module.h and onto extable.h X-Git-Tag: v4.11-rc1~134^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9ce6dbe8ea42ddf3ce8e6d0d2fa3b5d73448314e;p=thirdparty%2Fkernel%2Flinux.git arc: migrate exception table users off module.h and onto extable.h This file was only including module.h for exception table related functions. We've now separated that content out into its own file "extable.h" so now move over to that and avoid all the extra header content in module.h that we don't really need to compile this file. Since the file does have some EXPORT_SYMBOL, we add export.h include. Cc: Vineet Gupta Acked-by: Vineet Gupta Cc: linux-snps-arc@lists.infradead.org Signed-off-by: Paul Gortmaker --- diff --git a/arch/arc/mm/extable.c b/arch/arc/mm/extable.c index aa652e2813240..c86906b41bfe7 100644 --- a/arch/arc/mm/extable.c +++ b/arch/arc/mm/extable.c @@ -8,7 +8,8 @@ * Borrowed heavily from MIPS */ -#include +#include +#include #include int fixup_exception(struct pt_regs *regs)