From: Paul Gortmaker Date: Tue, 10 Jan 2017 19:13:29 +0000 (-0500) Subject: score: migrate exception table users off module.h and onto extable.h X-Git-Tag: v4.11-rc1~134^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f296af85be8bc7b3c46ae2cd7a0917a1cc9e7b4;p=thirdparty%2Fkernel%2Flinux.git score: migrate exception table users off module.h and onto extable.h These files were 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 these files. Cc: Chen Liqin Cc: Lennox Wu Signed-off-by: Paul Gortmaker --- diff --git a/arch/score/kernel/traps.c b/arch/score/kernel/traps.c index d948a6818961d..2b22bcf02c27e 100644 --- a/arch/score/kernel/traps.c +++ b/arch/score/kernel/traps.c @@ -23,7 +23,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include +#include #include #include diff --git a/arch/score/mm/extable.c b/arch/score/mm/extable.c index 01ff6445171cd..ec871355fc2d6 100644 --- a/arch/score/mm/extable.c +++ b/arch/score/mm/extable.c @@ -23,7 +23,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include +#include int fixup_exception(struct pt_regs *regs) { diff --git a/arch/score/mm/fault.c b/arch/score/mm/fault.c index 995b71e4db4ba..b85fad4f08740 100644 --- a/arch/score/mm/fault.c +++ b/arch/score/mm/fault.c @@ -28,7 +28,7 @@ #include #include #include -#include +#include #include #include #include