diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2016-09-19 17:34:39 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@mellanox.com> | 2016-12-16 15:32:29 -0500 |
commit | 18bfd3e6ab69cc4c8a11e4fc4acc121050db9b6e (patch) | |
tree | 4c1b0e7e6741f080c590bf7754b40e99f8afbed7 /arch/tile | |
parent | 870ee4ff5647dbf024f99ba5e56d0f3c344f1511 (diff) | |
download | op-kernel-dev-18bfd3e6ab69cc4c8a11e4fc4acc121050db9b6e.zip op-kernel-dev-18bfd3e6ab69cc4c8a11e4fc4acc121050db9b6e.tar.gz |
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 <cmetcalf@mellanox.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Chris Metcalf <cmetcalf@mellanox.com>
Diffstat (limited to 'arch/tile')
-rw-r--r-- | arch/tile/kernel/unaligned.c | 2 | ||||
-rw-r--r-- | arch/tile/mm/extable.c | 2 | ||||
-rw-r--r-- | arch/tile/mm/fault.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/arch/tile/kernel/unaligned.c b/arch/tile/kernel/unaligned.c index 9772a35..4fe78c5 100644 --- a/arch/tile/kernel/unaligned.c +++ b/arch/tile/kernel/unaligned.c @@ -22,7 +22,7 @@ #include <linux/mman.h> #include <linux/types.h> #include <linux/err.h> -#include <linux/module.h> +#include <linux/extable.h> #include <linux/compat.h> #include <linux/prctl.h> #include <asm/cacheflush.h> diff --git a/arch/tile/mm/extable.c b/arch/tile/mm/extable.c index 4fb0acb..aeaf20c 100644 --- a/arch/tile/mm/extable.c +++ b/arch/tile/mm/extable.c @@ -12,7 +12,7 @@ * more details. */ -#include <linux/module.h> +#include <linux/extable.h> #include <linux/spinlock.h> #include <linux/uaccess.h> diff --git a/arch/tile/mm/fault.c b/arch/tile/mm/fault.c index beba986..709f8e9 100644 --- a/arch/tile/mm/fault.c +++ b/arch/tile/mm/fault.c @@ -29,7 +29,7 @@ #include <linux/tty.h> #include <linux/vt_kern.h> /* For unblank_screen() */ #include <linux/highmem.h> -#include <linux/module.h> +#include <linux/extable.h> #include <linux/kprobes.h> #include <linux/hugetlb.h> #include <linux/syscalls.h> |