diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2015-08-27 16:25:07 +0530 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2015-08-27 16:25:37 +0530 |
commit | 3d5926599a6bc551efc0c8b244469a711f0d0166 (patch) | |
tree | 6415681a4df2e850bf433aed70c7ebfe315b7c0d | |
parent | 9b28829d6da391f67a76dbba07a167e2b554bd10 (diff) | |
download | linux-3d5926599a6bc551efc0c8b244469a711f0d0166.tar.bz2 |
ARCv2: entry: Fix reserved handler
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
-rw-r--r-- | arch/arc/kernel/entry-arcv2.S | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/arch/arc/kernel/entry-arcv2.S b/arch/arc/kernel/entry-arcv2.S index bd7105d3172f..8fa76567e402 100644 --- a/arch/arc/kernel/entry-arcv2.S +++ b/arch/arc/kernel/entry-arcv2.S @@ -57,13 +57,8 @@ VECTOR handle_interrupt ; (23) End of fixed IRQs .section .text, "ax",@progbits -res_service: ; processor restart - flag 0x1 ; not implemented - nop - nop - -reserved: ; processor restart - rtie ; jump to processor initializations +reserved: + flag 1 ; Unexpected event, halt ;##################### Interrupt Handling ############################## |