arm64: dts: Revert "specify console via command line"
[linux/fpc-iii.git] / arch / powerpc / kernel / jump_label.c
blobca37702bde97b3ce7291558add0fea2621edcb18
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Copyright 2010 Michael Ellerman, IBM Corp.
4 */
6 #include <linux/kernel.h>
7 #include <linux/jump_label.h>
8 #include <asm/code-patching.h>
10 void arch_jump_label_transform(struct jump_entry *entry,
11 enum jump_label_type type)
13 u32 *addr = (u32 *)(unsigned long)entry->code;
15 if (type == JUMP_LABEL_JMP)
16 patch_branch(addr, entry->target, 0);
17 else
18 patch_instruction(addr, PPC_INST_NOP);