aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/include/asm/exception-64s.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/include/asm/exception-64s.h')
-rw-r--r--arch/powerpc/include/asm/exception-64s.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/exception-64s.h b/arch/powerpc/include/asm/exception-64s.h
index a43c1473915f..9258daac4964 100644
--- a/arch/powerpc/include/asm/exception-64s.h
+++ b/arch/powerpc/include/asm/exception-64s.h
@@ -55,7 +55,8 @@
55 * word. 55 * word.
56 */ 56 */
57#define LOAD_HANDLER(reg, label) \ 57#define LOAD_HANDLER(reg, label) \
58 addi reg,reg,(label)-_stext; /* virt addr of handler ... */ 58 /* Handlers must be within 64K of kbase, which must be 64k aligned */ \
59 ori reg,reg,(label)-_stext; /* virt addr of handler ... */
59 60
60/* Exception register prefixes */ 61/* Exception register prefixes */
61#define EXC_HV H 62#define EXC_HV H