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/kernel | |
parent | 870ee4ff5647dbf024f99ba5e56d0f3c344f1511 (diff) | |
download | linux-stable-18bfd3e6ab69cc4c8a11e4fc4acc121050db9b6e.tar.gz linux-stable-18bfd3e6ab69cc4c8a11e4fc4acc121050db9b6e.tar.bz2 linux-stable-18bfd3e6ab69cc4c8a11e4fc4acc121050db9b6e.zip |
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/kernel')
-rw-r--r-- | arch/tile/kernel/unaligned.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/tile/kernel/unaligned.c b/arch/tile/kernel/unaligned.c index 9772a3554282..4fe78c5b8394 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> |