diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2018-12-03 13:20:47 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-12-05 15:26:54 +0100 |
commit | b73fbb8034703997d8cfd7e53d8cbaaf1b452c46 (patch) | |
tree | c90a553e35b309244359c4d695ddc1789f559ad7 | |
parent | 4f5897e03e23298ea969503363a8641d4812ce26 (diff) | |
download | linux-stable-b73fbb8034703997d8cfd7e53d8cbaaf1b452c46.tar.gz linux-stable-b73fbb8034703997d8cfd7e53d8cbaaf1b452c46.tar.bz2 linux-stable-b73fbb8034703997d8cfd7e53d8cbaaf1b452c46.zip |
openrisc: Fix broken paths to arch/or32
[ Upstream commit 57ce8ba0fd3a95bf29ed741df1c52bd591bf43ff ]
OpenRISC was mainlined as "openrisc", not "or32".
vmlinux.lds is generated from vmlinux.lds.S.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Stafford Horne <shorne@gmail.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r-- | arch/openrisc/kernel/entry.S | 2 | ||||
-rw-r--r-- | arch/openrisc/kernel/head.S | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/openrisc/kernel/entry.S b/arch/openrisc/kernel/entry.S index fec8bf97d806..c17e8451d997 100644 --- a/arch/openrisc/kernel/entry.S +++ b/arch/openrisc/kernel/entry.S @@ -179,7 +179,7 @@ handler: ;\ * occured. in fact they never do. if you need them use * values saved on stack (for SPR_EPC, SPR_ESR) or content * of r4 (for SPR_EEAR). for details look at EXCEPTION_HANDLE() - * in 'arch/or32/kernel/head.S' + * in 'arch/openrisc/kernel/head.S' */ /* =====================================================[ exceptions] === */ diff --git a/arch/openrisc/kernel/head.S b/arch/openrisc/kernel/head.S index f14793306b03..98dd6860bc0b 100644 --- a/arch/openrisc/kernel/head.S +++ b/arch/openrisc/kernel/head.S @@ -1596,7 +1596,7 @@ _string_esr_irq_bug: /* * .data section should be page aligned - * (look into arch/or32/kernel/vmlinux.lds) + * (look into arch/openrisc/kernel/vmlinux.lds.S) */ .section .data,"aw" .align 8192 |