summary refs log tree commit diff
diff options
context:
space:
mode:
authorHeiko Carstens <hca@linux.ibm.com>2021-10-04 12:03:42 +0200
committerVasily Gorbik <gor@linux.ibm.com>2021-10-11 20:55:58 +0200
commitacd6c9afc63cbb571d5312e7f7583bf266e61f69 (patch)
tree2c701212da0e9090c118cae3b699f0498513b57b
parent4e0502b8b31032abbc0424cff222139288a3891a (diff)
downloadlinux-acd6c9afc63cbb571d5312e7f7583bf266e61f69.tar.gz
s390/jump_label: rename __jump_label_transform()
Trivial patch just to get rid of the leading underscores.

Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
-rw-r--r--arch/s390/kernel/jump_label.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/s390/kernel/jump_label.c b/arch/s390/kernel/jump_label.c
index edefb40f172b..0546c67da99b 100644
--- a/arch/s390/kernel/jump_label.c
+++ b/arch/s390/kernel/jump_label.c
@@ -48,9 +48,9 @@ static struct insn orignop = {
 	.offset = JUMP_LABEL_NOP_OFFSET >> 1,
 };
 
-static void __jump_label_transform(struct jump_entry *entry,
-				   enum jump_label_type type,
-				   int init)
+static void jump_label_transform(struct jump_entry *entry,
+				 enum jump_label_type type,
+				 int init)
 {
 	void *code = (void *)jump_entry_code(entry);
 	struct insn old, new;
@@ -75,14 +75,14 @@ static void __jump_label_transform(struct jump_entry *entry,
 void arch_jump_label_transform(struct jump_entry *entry,
 			       enum jump_label_type type)
 {
-	__jump_label_transform(entry, type, 0);
+	jump_label_transform(entry, type, 0);
 	text_poke_sync();
 }
 
 bool arch_jump_label_transform_queue(struct jump_entry *entry,
 				     enum jump_label_type type)
 {
-	__jump_label_transform(entry, type, 0);
+	jump_label_transform(entry, type, 0);
 	return true;
 }
 
@@ -94,6 +94,6 @@ void arch_jump_label_transform_apply(void)
 void arch_jump_label_transform_static(struct jump_entry *entry,
 				      enum jump_label_type type)
 {
-	__jump_label_transform(entry, type, 1);
+	jump_label_transform(entry, type, 1);
 	text_poke_sync();
 }