aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/powerpc/kernel/head_64.S2
-rw-r--r--include/asm-powerpc/exception.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/head_64.S b/arch/powerpc/kernel/head_64.S
index 33c4e8cab0ba..cec59089e48c 100644
--- a/arch/powerpc/kernel/head_64.S
+++ b/arch/powerpc/kernel/head_64.S
@@ -656,7 +656,9 @@ hardware_interrupt_common:
656 FINISH_NAP 656 FINISH_NAP
657hardware_interrupt_entry: 657hardware_interrupt_entry:
658 DISABLE_INTS 658 DISABLE_INTS
659BEGIN_FTR_SECTION
659 bl .ppc64_runlatch_on 660 bl .ppc64_runlatch_on
661END_FTR_SECTION_IFSET(CPU_FTR_CTRL)
660 addi r3,r1,STACK_FRAME_OVERHEAD 662 addi r3,r1,STACK_FRAME_OVERHEAD
661 bl .do_IRQ 663 bl .do_IRQ
662 b .ret_from_except_lite 664 b .ret_from_except_lite
diff --git a/include/asm-powerpc/exception.h b/include/asm-powerpc/exception.h
index d850c8ea5903..39abdb02fdef 100644
--- a/include/asm-powerpc/exception.h
+++ b/include/asm-powerpc/exception.h
@@ -282,7 +282,9 @@ label##_common: \
282 EXCEPTION_PROLOG_COMMON(trap, PACA_EXGEN); \ 282 EXCEPTION_PROLOG_COMMON(trap, PACA_EXGEN); \
283 FINISH_NAP; \ 283 FINISH_NAP; \
284 DISABLE_INTS; \ 284 DISABLE_INTS; \
285BEGIN_FTR_SECTION \
285 bl .ppc64_runlatch_on; \ 286 bl .ppc64_runlatch_on; \
287END_FTR_SECTION_IFSET(CPU_FTR_CTRL) \
286 addi r3,r1,STACK_FRAME_OVERHEAD; \ 288 addi r3,r1,STACK_FRAME_OVERHEAD; \
287 bl hdlr; \ 289 bl hdlr; \
288 b .ret_from_except_lite 290 b .ret_from_except_lite