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 /arch/powerpc/include | |
parent | 341acbb3aabbcfbf069d7de4ad35f51b58176faf (diff) |
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>
Diffstat (limited to 'arch/powerpc/include')
-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 9ea266eae33..7e461252854 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; \ |