]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
unicore32: migrate exception table users off module.h and onto extable.h
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Tue, 10 Jan 2017 19:13:29 +0000 (14:13 -0500)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Thu, 26 Jan 2017 15:58:18 +0000 (10:58 -0500)
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: Guan Xuetao <gxt@mprc.pku.edu.cn>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
arch/unicore32/mm/extable.c
arch/unicore32/mm/fault.c

index 6564180eb285908fa594da57bc427f24503e105d..c562046947ba5d50d8d36e72b1228fb63cec595b 100644 (file)
@@ -9,7 +9,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/uaccess.h>
 
 int fixup_exception(struct pt_regs *regs)
index 6c7f70bcaae3263b1b9a229c87739c1bd25b68e1..b656d216a8a85d83c0ef1f2505e8145d13e32a3b 100644 (file)
@@ -9,7 +9,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>