diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2015-04-18 20:35:10 (GMT) |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2015-06-16 18:12:22 (GMT) |
commit | 5ffa70f0dd9cff5e5d0c50a463fdcb5405a0f364 (patch) | |
tree | 6b49421db084dc8b1edbdd913a08c3dfeabdd338 | |
parent | bff5e48e106b919492424f36a5b6a1bb21aa5c77 (diff) | |
download | linux-5ffa70f0dd9cff5e5d0c50a463fdcb5405a0f364.tar.xz |
kernel/cpu.c: 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>
-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 94bbe46..b4e940d 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); } |