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-Tag: v5.15~12716^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9a2950fe9cb6882063181673846953d44f32cc3a;p=platform%2Fkernel%2Flinux-starfive.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 682b247..eb4a3fc 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 a4b7eda..b3977e9 100644 --- a/arch/avr32/mm/fault.c +++ b/arch/avr32/mm/fault.c @@ -10,7 +10,7 @@ */ #include -#include +#include #include #include #include