diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2015-04-27 18:47:58 -0400 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2015-05-27 12:58:39 -0700 |
commit | 927da9dfd13aec358496de9488384f1a663c679a (patch) | |
tree | d49424725afaa1d85ba978a0395c13a2c3ea800d /kernel/cpu.c | |
parent | 64eaf974218d576812919c8b1a8d87ded4e695d9 (diff) | |
download | linux-927da9dfd13aec358496de9488384f1a663c679a.tar.gz linux-927da9dfd13aec358496de9488384f1a663c679a.tar.bz2 linux-927da9dfd13aec358496de9488384f1a663c679a.zip |
cpu: Remove new instance of __cpuinit that crept back in
We removed __cpuinit support (leaving no-op stubs) quite some time ago.
However a new instance was added in commit 00df35f991914db6b8bde8cf0980
("cpu: Defer smpboot kthread unparking until CPU known to scheduler")
Since we want to clobber the stubs soon, get this removed now.
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/cpu.c')
-rw-r--r-- | kernel/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cpu.c b/kernel/cpu.c index 260eb7db281e..9c9c9fab16cc 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c @@ -479,7 +479,7 @@ static struct notifier_block smpboot_thread_notifier = { .priority = CPU_PRI_SMPBOOT, }; -void __cpuinit smpboot_thread_init(void) +void smpboot_thread_init(void) { register_cpu_notifier(&smpboot_thread_notifier); } |