summaryrefslogtreecommitdiffstats
path: root/arch/xtensa/mm
diff options
context:
space:
mode:
authorPaul Gortmaker2016-07-23 20:01:45 +0200
committerPaul Gortmaker2017-01-24 18:41:46 +0100
commit6cc306ea5cda3bf75c590140703c792a7cfe1be6 (patch)
tree7332ae62bea31ae65491bba232496675947c01d2 /arch/xtensa/mm
parentmn10300: migrate exception table users off module.h and onto extable.h (diff)
downloadkernel-qcow2-linux-6cc306ea5cda3bf75c590140703c792a7cfe1be6.tar.gz
kernel-qcow2-linux-6cc306ea5cda3bf75c590140703c792a7cfe1be6.tar.xz
kernel-qcow2-linux-6cc306ea5cda3bf75c590140703c792a7cfe1be6.zip
xtensa: 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 file. Cc: Chris Zankel <chris@zankel.net> Cc: Max Filippov <jcmvbkbc@gmail.com> Cc: linux-xtensa@linux-xtensa.org Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'arch/xtensa/mm')
-rw-r--r--arch/xtensa/mm/fault.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/xtensa/mm/fault.c b/arch/xtensa/mm/fault.c
index 2725e08ef353..a14df5aa98c8 100644
--- a/arch/xtensa/mm/fault.c
+++ b/arch/xtensa/mm/fault.c
@@ -13,7 +13,7 @@
*/
#include <linux/mm.h>
-#include <linux/module.h>
+#include <linux/extable.h>
#include <linux/hardirq.h>
#include <linux/perf_event.h>
#include <linux/uaccess.h>