diff options
author | Heiko Carstens <hca@linux.ibm.com> | 2021-10-04 12:07:35 +0200 |
---|---|---|
committer | Vasily Gorbik <gor@linux.ibm.com> | 2021-10-11 20:55:58 +0200 |
commit | 0c14c037952c0e29c3c66ccad6301648e02e11e1 (patch) | |
tree | 43fd75702bbc4fd02b34537664aa15046280e546 /arch/s390/kernel | |
parent | s390/jump_label: rename __jump_label_transform() (diff) | |
download | linux-0c14c037952c0e29c3c66ccad6301648e02e11e1.tar.xz linux-0c14c037952c0e29c3c66ccad6301648e02e11e1.zip |
s390/jump_label: add __init_or_module annotation
Add missing __init_or_module to arch_jump_label_transform_static().
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'arch/s390/kernel')
-rw-r--r-- | arch/s390/kernel/jump_label.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/s390/kernel/jump_label.c b/arch/s390/kernel/jump_label.c index 0546c67da99b..6bec000c6c1c 100644 --- a/arch/s390/kernel/jump_label.c +++ b/arch/s390/kernel/jump_label.c @@ -7,6 +7,7 @@ */ #include <linux/uaccess.h> #include <linux/jump_label.h> +#include <linux/module.h> #include <asm/text-patching.h> #include <asm/ipl.h> @@ -91,8 +92,8 @@ void arch_jump_label_transform_apply(void) text_poke_sync(); } -void arch_jump_label_transform_static(struct jump_entry *entry, - enum jump_label_type type) +void __init_or_module arch_jump_label_transform_static(struct jump_entry *entry, + enum jump_label_type type) { jump_label_transform(entry, type, 1); text_poke_sync(); |