summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/lib
diff options
context:
space:
mode:
authorChristophe Leroy <christophe.leroy@csgroup.eu>2021-04-14 15:08:42 +0200
committerMichael Ellerman <mpe@ellerman.id.au>2021-04-21 14:52:33 +0200
commit41d6cf68b5f611934bcc6a7d4a1a2d9bfd04b420 (patch)
treecbbd78ee1c7ed6fd610a251dd408f71da0b8e0f3 /arch/powerpc/lib
parentpowerpc: Make probe_kernel_read_inst() common to PPC32 and PPC64 (diff)
downloadlinux-41d6cf68b5f611934bcc6a7d4a1a2d9bfd04b420.tar.xz
linux-41d6cf68b5f611934bcc6a7d4a1a2d9bfd04b420.zip
powerpc: Rename probe_kernel_read_inst()
When probe_kernel_read_inst() was created, it was to mimic probe_kernel_read() function. Since then, probe_kernel_read() has been renamed copy_from_kernel_nofault(). Rename probe_kernel_read_inst() into copy_inst_from_kernel_nofault(). Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/b783d1f7cdb8914992384a669a2af57051b6bdcf.1618405715.git.christophe.leroy@csgroup.eu
Diffstat (limited to 'arch/powerpc/lib')
-rw-r--r--arch/powerpc/lib/inst.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/powerpc/lib/inst.c b/arch/powerpc/lib/inst.c
index 0dff3ac2d45f..e554d1357f2f 100644
--- a/arch/powerpc/lib/inst.c
+++ b/arch/powerpc/lib/inst.c
@@ -8,8 +8,7 @@
#include <asm/inst.h>
#include <asm/ppc-opcode.h>
-int probe_kernel_read_inst(struct ppc_inst *inst,
- struct ppc_inst *src)
+int copy_inst_from_kernel_nofault(struct ppc_inst *inst, struct ppc_inst *src)
{
unsigned int val, suffix;
int err;