Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9c8b3907 authored by Al Viro's avatar Al Viro Committed by Benjamin Herrenschmidt
Browse files

powerpc: Fix build breakage in jump_label.c



Should do what other architectures do and wrap all that code into
the appropriate ifdef

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent cfcfc9ec
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@
#include <linux/jump_label.h>
#include <asm/code-patching.h>

#ifdef HAVE_JUMP_LABEL
void arch_jump_label_transform(struct jump_entry *entry,
			       enum jump_label_type type)
{
@@ -21,3 +22,4 @@ void arch_jump_label_transform(struct jump_entry *entry,
	else
		patch_instruction(addr, PPC_INST_NOP);
}
#endif