]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
openrisc: migrate exception table users off module.h and onto extable.h
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Tue, 10 Jan 2017 15:46:25 +0000 (10:46 -0500)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Thu, 26 Jan 2017 15:58:04 +0000 (10:58 -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.

Reported-by: kbuild test robot <lkp@intel.com>
Cc: Jonas Bonn <jonas@southpole.se>
Cc: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
Cc: Stafford Horne <shorne@gmail.com>
Cc: openrisc@lists.librecores.org
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
arch/openrisc/kernel/traps.c
arch/openrisc/mm/fault.c

index a4574cb4b0fb88cc783066cf48d4a35ecd4ead1e..d29c41bfbffaab232cf21d781aed6893fde12c06 100644 (file)
@@ -23,7 +23,7 @@
 #include <linux/init.h>
 #include <linux/sched.h>
 #include <linux/kernel.h>
-#include <linux/module.h>
+#include <linux/extable.h>
 #include <linux/kmod.h>
 #include <linux/string.h>
 #include <linux/errno.h>
index b1a7435e786afd590f53e2ec286c15886f0e0dbb..53592a639744f44dbbe9a2b0fd300d6593be2485 100644 (file)
@@ -17,7 +17,7 @@
 
 #include <linux/mm.h>
 #include <linux/interrupt.h>
-#include <linux/module.h>
+#include <linux/extable.h>
 #include <linux/sched.h>
 
 #include <linux/uaccess.h>