]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
arm: migrate exception table users off module.h and onto extable.h
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Sat, 23 Jul 2016 18:01:45 +0000 (14:01 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Tue, 24 Jan 2017 17:41:46 +0000 (12:41 -0500)
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>
arch/arm/mm/extable.c
arch/arm/mm/fault.c

index 312e15e6d00b8a6b909747305166e1bc7f581bf0..f436f7439e46d585777ee620fe3262b5897c204f 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *  linux/arch/arm/mm/extable.c
  */
-#include <linux/module.h>
+#include <linux/extable.h>
 #include <linux/uaccess.h>
 
 int fixup_exception(struct pt_regs *regs)
index 3a2e678b8d30cabfb058fd82bb1d3336e3dab02d..94de590db99e5ab951c91b317f7727eed2c2eed7 100644 (file)
@@ -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>