summaryrefslogtreecommitdiffstats
path: root/arch/score/kernel
diff options
context:
space:
mode:
authorPaul Gortmaker2017-01-10 20:13:29 +0100
committerPaul Gortmaker2017-01-26 16:58:17 +0100
commit0f296af85be8bc7b3c46ae2cd7a0917a1cc9e7b4 (patch)
treeb05013c09a789935ded570cb7e1a27b06a5fd767 /arch/score/kernel
parentmetag: migrate exception table users off module.h and onto extable.h (diff)
downloadkernel-qcow2-linux-0f296af85be8bc7b3c46ae2cd7a0917a1cc9e7b4.tar.gz
kernel-qcow2-linux-0f296af85be8bc7b3c46ae2cd7a0917a1cc9e7b4.tar.xz
kernel-qcow2-linux-0f296af85be8bc7b3c46ae2cd7a0917a1cc9e7b4.zip
score: migrate exception table users off module.h and onto extable.h
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: Chen Liqin <liqin.linux@gmail.com> Cc: Lennox Wu <lennox.wu@gmail.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'arch/score/kernel')
-rw-r--r--arch/score/kernel/traps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/score/kernel/traps.c b/arch/score/kernel/traps.c
index d948a6818961..2b22bcf02c27 100644
--- a/arch/score/kernel/traps.c
+++ b/arch/score/kernel/traps.c
@@ -23,7 +23,7 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include <linux/module.h>
+#include <linux/extable.h>
#include <linux/sched.h>
#include <asm/cacheflush.h>