Commit 1bc9e47a authored by Anton Blanchard's avatar Anton Blanchard Committed by Michael Ellerman

powerpc/jump_label: Use HAVE_JUMP_LABEL

Commit d4fe0965 ("powerpc/jump_label: use HAVE_JUMP_LABEL?")
missed a few conversions. Change the remaining uses of
CONFIG_JUMP_LABEL to HAVE_JUMP_LABEL.
Signed-off-by: default avatarAnton Blanchard <anton@samba.org>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 4b4b13d5
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
.section ".text" .section ".text"
#ifdef CONFIG_TRACEPOINTS #ifdef CONFIG_TRACEPOINTS
#ifdef CONFIG_JUMP_LABEL #ifdef HAVE_JUMP_LABEL
#define OPAL_BRANCH(LABEL) \ #define OPAL_BRANCH(LABEL) \
ARCH_STATIC_BRANCH(LABEL, opal_tracepoint_key) ARCH_STATIC_BRANCH(LABEL, opal_tracepoint_key)
#else #else
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
#ifdef CONFIG_TRACEPOINTS #ifdef CONFIG_TRACEPOINTS
#ifndef CONFIG_JUMP_LABEL #ifndef HAVE_JUMP_LABEL
.section ".toc","aw" .section ".toc","aw"
.globl hcall_tracepoint_refcount .globl hcall_tracepoint_refcount
...@@ -78,7 +78,7 @@ hcall_tracepoint_refcount: ...@@ -78,7 +78,7 @@ hcall_tracepoint_refcount:
mr r5,BUFREG; \ mr r5,BUFREG; \
__HCALL_INST_POSTCALL __HCALL_INST_POSTCALL
#ifdef CONFIG_JUMP_LABEL #ifdef HAVE_JUMP_LABEL
#define HCALL_BRANCH(LABEL) \ #define HCALL_BRANCH(LABEL) \
ARCH_STATIC_BRANCH(LABEL, hcall_tracepoint_key) ARCH_STATIC_BRANCH(LABEL, hcall_tracepoint_key)
#else #else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment