diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2016-07-23 14:01:45 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2017-01-24 12:41:46 -0500 |
commit | 0ea9365a51f9993d4b62fe10e523988d3feb4ad7 (patch) | |
tree | 67d62660b37b0d1da32ac02dce8ade9baa8d2f1b /arch/arm/mm/fault.c | |
parent | ae26cdae4f00995d01291a9829f57d205a04b6b7 (diff) | |
download | linux-0ea9365a51f9993d4b62fe10e523988d3feb4ad7.tar.bz2 |
arm: 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: Russell King <linux@armlinux.org.uk>
Cc: linux-arm-kernel@lists.infradead.org
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'arch/arm/mm/fault.c')
-rw-r--r-- | arch/arm/mm/fault.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mm/fault.c b/arch/arm/mm/fault.c index 3a2e678b8d30..94de590db99e 100644 --- a/arch/arm/mm/fault.c +++ b/arch/arm/mm/fault.c @@ -8,7 +8,7 @@ * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ -#include <linux/module.h> +#include <linux/extable.h> #include <linux/signal.h> #include <linux/mm.h> #include <linux/hardirq.h> |