diff options
author | Alexander Graf <agraf@suse.de> | 2014-06-26 13:19:40 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2014-06-26 13:19:42 +0200 |
commit | 9715a2e8515217206ebf53040c979fdbeb805a21 (patch) | |
tree | b5a09b4c9f7aa2284c19e83e38dfff0930834e6e | |
parent | KVM: PPC: BOOK3S: HV: Use base page size when comparing against slb value (diff) | |
download | linux-9715a2e8515217206ebf53040c979fdbeb805a21.tar.xz linux-9715a2e8515217206ebf53040c979fdbeb805a21.zip |
PPC: Add _GLOBAL_TOC for 32bit
Commit ac5a8ee8 started using _GLOBAL_TOC on ppc32 code. Unfortunately it's only
defined for 64bit targets though. Define it for ppc32 as well, fixing the build
breakage that commit introduced.
Signed-off-by: Alexander Graf <agraf@suse.de>
-rw-r--r-- | arch/powerpc/include/asm/ppc_asm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/ppc_asm.h b/arch/powerpc/include/asm/ppc_asm.h index 9ea266eae33e..7e4612528546 100644 --- a/arch/powerpc/include/asm/ppc_asm.h +++ b/arch/powerpc/include/asm/ppc_asm.h @@ -277,6 +277,8 @@ n: .globl n; \ n: +#define _GLOBAL_TOC(name) _GLOBAL(name) + #define _KPROBE(n) \ .section ".kprobes.text","a"; \ .globl n; \ |