From: Paul Gortmaker Date: Mon, 19 Sep 2016 21:59:49 +0000 (-0400) Subject: avr32: migrate exception table users off module.h and onto extable.h X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9a2950fe9cb6882063181673846953d44f32cc3a;p=linux.git avr32: 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. One uses "print_modules" so that prevents us removing module.h in that case, however. Cc: Haavard Skinnemoen Cc: Hans-Christian Egtvedt Signed-off-by: Paul Gortmaker Acked-by: Hans-Christian Noren Egtvedt --- diff --git a/arch/avr32/kernel/traps.c b/arch/avr32/kernel/traps.c index 682b2478691a7..eb4a3fcfbaff1 100644 --- a/arch/avr32/kernel/traps.c +++ b/arch/avr32/kernel/traps.c @@ -11,7 +11,8 @@ #include #include #include -#include +#include +#include /* print_modules */ #include #include #include diff --git a/arch/avr32/mm/fault.c b/arch/avr32/mm/fault.c index a4b7edac8f109..b3977e9208a38 100644 --- a/arch/avr32/mm/fault.c +++ b/arch/avr32/mm/fault.c @@ -10,7 +10,7 @@ */ #include -#include +#include #include #include #include