diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2016-09-19 23:36:29 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-10-06 07:42:30 +0200 |
commit | cdd4f4c71047cdd28c13891e6e217765ea1c1bdc (patch) | |
tree | 5532d78c4395bd757d9d35f0e7d6af21da27c651 /arch/sparc/kernel/unaligned_64.c | |
parent | Linux 4.8 (diff) | |
download | linux-cdd4f4c71047cdd28c13891e6e217765ea1c1bdc.tar.xz linux-cdd4f4c71047cdd28c13891e6e217765ea1c1bdc.zip |
sparc: 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: "David S. Miller" <davem@davemloft.net>
Cc: sparclinux@vger.kernel.org
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/kernel/unaligned_64.c')
-rw-r--r-- | arch/sparc/kernel/unaligned_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/kernel/unaligned_64.c b/arch/sparc/kernel/unaligned_64.c index 9aacb9159262..52c00d90d4b4 100644 --- a/arch/sparc/kernel/unaligned_64.c +++ b/arch/sparc/kernel/unaligned_64.c @@ -11,7 +11,7 @@ #include <linux/kernel.h> #include <linux/sched.h> #include <linux/mm.h> -#include <linux/module.h> +#include <linux/extable.h> #include <asm/asi.h> #include <asm/ptrace.h> #include <asm/pstate.h> |