diff options
author | Nicholas Piggin <npiggin@gmail.com> | 2016-09-21 10:43:28 +0300 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2016-10-04 05:06:55 +0300 |
commit | be642c3457e75983be6f1f4bddcc77c9e2ed4650 (patch) | |
tree | f5b3ae3ec58a2375aa28c19d8bd4219a2f948524 /arch/powerpc/include/asm/head-64.h | |
parent | da2bc4644c75d992427c45c5ade3bdf18ca1b52d (diff) | |
download | linux-be642c3457e75983be6f1f4bddcc77c9e2ed4650.tar.xz |
powerpc/64s: Consolidate exception handler alignment
Move exception handler alignment directives into the head-64.h macros,
beause they will no longer work in-place after the next patch. This
slightly changes functions that have alignments applied and therefore
code generation, which is why it was not done initially (see earlier
patch).
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/include/asm/head-64.h')
-rw-r--r-- | arch/powerpc/include/asm/head-64.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/head-64.h b/arch/powerpc/include/asm/head-64.h index 358c25c80c62..613f743e91aa 100644 --- a/arch/powerpc/include/asm/head-64.h +++ b/arch/powerpc/include/asm/head-64.h @@ -18,6 +18,7 @@ exc_virt_##start##_##name: #define EXC_VIRT_END(name, start, end) #define EXC_COMMON_BEGIN(name) \ + .align 7; \ .global name; \ name: |