diff options
author | Dou Liyang <douly.fnst@cn.fujitsu.com> | 2018-01-17 11:45:43 +0800 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2018-02-13 17:24:36 +0100 |
commit | afed7d172091040f38c75a2927fed170ea11585f (patch) | |
tree | 7c83de66c80c96f42a047fc8316bf91f7327c114 /arch/x86/kernel | |
parent | 178e834c47b0d01352c48730235aae69898fbc02 (diff) | |
download | linux-stable-afed7d172091040f38c75a2927fed170ea11585f.tar.gz linux-stable-afed7d172091040f38c75a2927fed170ea11585f.tar.bz2 linux-stable-afed7d172091040f38c75a2927fed170ea11585f.zip |
x86/x2apic: Mark set_x2apic_phys_mode() as __init
set_x2apic_phys_mode() is only called as part of early_param()
initialization - so mark it as __init.
Signed-off-by: Dou Liyang <douly.fnst@cn.fujitsu.com>
Cc: Juergen Gross <jgross@suse.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/20180117034543.26723-1-douly.fnst@cn.fujitsu.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r-- | arch/x86/kernel/apic/x2apic_phys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/apic/x2apic_phys.c b/arch/x86/kernel/apic/x2apic_phys.c index f8d9d69994e6..e2829bf40e4a 100644 --- a/arch/x86/kernel/apic/x2apic_phys.c +++ b/arch/x86/kernel/apic/x2apic_phys.c @@ -14,7 +14,7 @@ int x2apic_phys; static struct apic apic_x2apic_phys; -static int set_x2apic_phys_mode(char *arg) +static int __init set_x2apic_phys_mode(char *arg) { x2apic_phys = 1; return 0; |