diff options
author | Greentime Hu <greentime@andestech.com> | 2018-04-19 16:04:36 +0800 |
---|---|---|
committer | Greentime Hu <greentime@andestech.com> | 2018-05-23 13:26:21 +0800 |
commit | c8c20f9c162da25ea0893d5c5ded3a89382a2b5e (patch) | |
tree | 1e372a54c9632437bdacab11154694b6720c26b4 /arch/nds32/kernel | |
parent | bb912671e36552e11352a6b749dcf68b0df6ad01 (diff) | |
download | linux-stable-c8c20f9c162da25ea0893d5c5ded3a89382a2b5e.tar.gz linux-stable-c8c20f9c162da25ea0893d5c5ded3a89382a2b5e.tar.bz2 linux-stable-c8c20f9c162da25ea0893d5c5ded3a89382a2b5e.zip |
nds32: Fix build failed because arch_trace_hardirqs_off is changed to trace_hardirqs_off.
It broke the 'allmodconfig' build when CONFIG_TRACE_IRQFLAGS is enabled.
Signed-off-by: Nick Chun-Ming Hu <nickhu@andestech.com>
Signed-off-by: Greentime Hu <greentime@andestech.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/nds32/kernel')
-rw-r--r-- | arch/nds32/kernel/ex-entry.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/nds32/kernel/ex-entry.S b/arch/nds32/kernel/ex-entry.S index a72e83d804f5..b8ae4e9a6b93 100644 --- a/arch/nds32/kernel/ex-entry.S +++ b/arch/nds32/kernel/ex-entry.S @@ -118,7 +118,7 @@ common_exception_handler: /* interrupt */ 2: #ifdef CONFIG_TRACE_IRQFLAGS - jal arch_trace_hardirqs_off + jal trace_hardirqs_off #endif move $r0, $sp sethi $lp, hi20(ret_from_intr) |