diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2017-01-10 14:13:29 -0500 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2017-01-26 10:58:17 -0500 |
commit | 0f296af85be8bc7b3c46ae2cd7a0917a1cc9e7b4 (patch) | |
tree | b05013c09a789935ded570cb7e1a27b06a5fd767 /arch/score/kernel | |
parent | 6bb6bf7fdab5f9e190cca69ec9ddf9e916dc729d (diff) | |
download | blackbird-obmc-linux-0f296af85be8bc7b3c46ae2cd7a0917a1cc9e7b4.tar.gz blackbird-obmc-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.c | 2 |
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> |