From: Paul Gortmaker Date: Mon, 19 Sep 2016 21:34:39 +0000 (-0400) Subject: tile: migrate exception table users off module.h and onto extable.h X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=18bfd3e6ab69cc4c8a11e4fc4acc121050db9b6e;p=linux.git tile: 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: Chris Metcalf Signed-off-by: Paul Gortmaker Signed-off-by: Chris Metcalf --- diff --git a/arch/tile/kernel/unaligned.c b/arch/tile/kernel/unaligned.c index 9772a35542823..4fe78c5b83949 100644 --- a/arch/tile/kernel/unaligned.c +++ b/arch/tile/kernel/unaligned.c @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/arch/tile/mm/extable.c b/arch/tile/mm/extable.c index 4fb0acb9d154d..aeaf20c7aaa4e 100644 --- a/arch/tile/mm/extable.c +++ b/arch/tile/mm/extable.c @@ -12,7 +12,7 @@ * more details. */ -#include +#include #include #include diff --git a/arch/tile/mm/fault.c b/arch/tile/mm/fault.c index beba986589e58..709f8e9ba3e96 100644 --- a/arch/tile/mm/fault.c +++ b/arch/tile/mm/fault.c @@ -29,7 +29,7 @@ #include #include /* For unblank_screen() */ #include -#include +#include #include #include #include