diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2020-03-27 00:16:58 +0300 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2020-03-27 13:05:41 +0300 |
commit | 4de4952c0abcb490039cdc946e49ed7f237285a2 (patch) | |
tree | f40c5f3678bf47d532e8349cea77ce6883df7d1c /arch/x86/kernel/jump_label.c | |
parent | 01bd18624d91cfe82e7df4bfe2f22814a20b993a (diff) | |
download | linux-4de4952c0abcb490039cdc946e49ed7f237285a2.tar.xz |
x86/jump_label: Move 'inline' keyword placement
Fix gcc warning when -Wextra is used by moving the keyword:
arch/x86/kernel/jump_label.c:61:1: warning: ‘inline’ is not at \
beginning of declaration [-Wold-style-declaration]
static void inline __jump_label_transform(struct jump_entry *entry,
^~~~~~
Reported-by: Zzy Wysm <zzy@zzywysm.com>
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/796d93d2-e73e-3447-44eb-4f89e1b636d9@infradead.org
Diffstat (limited to 'arch/x86/kernel/jump_label.c')
-rw-r--r-- | arch/x86/kernel/jump_label.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/jump_label.c b/arch/x86/kernel/jump_label.c index 9c4498ea0b3c..5ba8477c2cb7 100644 --- a/arch/x86/kernel/jump_label.c +++ b/arch/x86/kernel/jump_label.c @@ -58,7 +58,7 @@ __jump_label_set_jump_code(struct jump_entry *entry, enum jump_label_type type, return code; } -static void inline __jump_label_transform(struct jump_entry *entry, +static inline void __jump_label_transform(struct jump_entry *entry, enum jump_label_type type, int init) { |