s390/jump_label: rename __jump_label_transform()
authorHeiko Carstens <hca@linux.ibm.com>
Mon, 4 Oct 2021 10:03:42 +0000 (12:03 +0200)
committerVasily Gorbik <gor@linux.ibm.com>
Mon, 11 Oct 2021 18:55:58 +0000 (20:55 +0200)
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>
arch/s390/kernel/jump_label.c

index edefb40..0546c67 100644 (file)
@@ -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();
 }