diff options
author | Christophe Leroy <christophe.leroy@csgroup.eu> | 2021-05-20 15:50:43 +0200 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2021-06-16 15:35:57 +0200 |
commit | 6c0d181daabcba286db9711eef8800b566fb1cce (patch) | |
tree | 48021825a17d9f389b216409a3eaa0b0a1d800e7 /arch/powerpc/include/asm/code-patching.h | |
parent | powerpc: Do not dereference code as 'struct ppc_inst' (uprobe, code-patching,... (diff) | |
download | linux-6c0d181daabcba286db9711eef8800b566fb1cce.tar.xz linux-6c0d181daabcba286db9711eef8800b566fb1cce.zip |
powerpc/lib/code-patching: Make instr_is_branch_to_addr() static
instr_is_branch_to_addr() is only used in code-patching.c
Make it static.
Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/5f6b9c8c83170ed310953eac2f5b14539bfc964a.1621516826.git.christophe.leroy@csgroup.eu
Diffstat (limited to 'arch/powerpc/include/asm/code-patching.h')
-rw-r--r-- | arch/powerpc/include/asm/code-patching.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/code-patching.h b/arch/powerpc/include/asm/code-patching.h index 22957c6068c8..fd60594bdd38 100644 --- a/arch/powerpc/include/asm/code-patching.h +++ b/arch/powerpc/include/asm/code-patching.h @@ -59,7 +59,6 @@ static inline int modify_instruction_site(s32 *site, unsigned int clr, unsigned int instr_is_relative_branch(struct ppc_inst instr); int instr_is_relative_link_branch(struct ppc_inst instr); -int instr_is_branch_to_addr(const struct ppc_inst *instr, unsigned long addr); unsigned long branch_target(const struct ppc_inst *instr); int translate_branch(struct ppc_inst *instr, const struct ppc_inst *dest, const struct ppc_inst *src); |