summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2017-01-10 20:13:29 +0100
committerPaul Gortmaker <paul.gortmaker@windriver.com>2017-01-26 16:58:19 +0100
commita75f3108f5181e30f45b5a443dd1a66bc80498be (patch)
tree0bf0f7c99e8dbfc2f2b502fd07c438131d2a0176
parentunicore32: migrate exception table users off module.h and onto extable.h (diff)
downloadlinux-a75f3108f5181e30f45b5a443dd1a66bc80498be.tar.xz
linux-a75f3108f5181e30f45b5a443dd1a66bc80498be.zip
microblaze: 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: Michal Simek <monstr@monstr.eu> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
-rw-r--r--arch/microblaze/mm/fault.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/mm/fault.c b/arch/microblaze/mm/fault.c
index abb678ccde6f..f91b30f8aaa8 100644
--- a/arch/microblaze/mm/fault.c
+++ b/arch/microblaze/mm/fault.c
@@ -17,7 +17,7 @@
*
*/
-#include <linux/module.h>
+#include <linux/extable.h>
#include <linux/signal.h>
#include <linux/sched.h>
#include <linux/kernel.h>