diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2016-09-19 17:01:38 -0400 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2016-09-30 10:25:41 +0200 |
commit | 6736e65effc3a5a866cf8a03cda9ad277b712d3f (patch) | |
tree | 513c0f5e28ccea4504c818f8a30a2b944cc1df8a /arch/m68k | |
parent | f5e14739ed35efda73731594cac003fbf1fa151f (diff) | |
download | talos-obmc-linux-6736e65effc3a5a866cf8a03cda9ad277b712d3f.tar.gz talos-obmc-linux-6736e65effc3a5a866cf8a03cda9ad277b712d3f.zip |
m68k: 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.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/kernel/signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/kernel/signal.c b/arch/m68k/kernel/signal.c index 2dcee3a88867..db775322b485 100644 --- a/arch/m68k/kernel/signal.c +++ b/arch/m68k/kernel/signal.c @@ -42,7 +42,7 @@ #include <linux/personality.h> #include <linux/tty.h> #include <linux/binfmts.h> -#include <linux/module.h> +#include <linux/extable.h> #include <linux/tracehook.h> #include <asm/setup.h> |