|
@@ -182,10 +182,6 @@ static int wakeup_secondary_cpu_via_mip(int cpu, unsigned long eip)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static void noop_wait_for_deassert(atomic_t *deassert_not_used)
|
|
|
-{
|
|
|
-}
|
|
|
-
|
|
|
static int __init es7000_update_genapic(void)
|
|
|
{
|
|
|
apic->wakeup_cpu = wakeup_secondary_cpu_via_mip;
|
|
@@ -194,7 +190,7 @@ static int __init es7000_update_genapic(void)
|
|
|
if (boot_cpu_data.x86 == 6 &&
|
|
|
(boot_cpu_data.x86_model >= 7 || boot_cpu_data.x86_model <= 11)) {
|
|
|
es7000_update_genapic_to_cluster();
|
|
|
- apic->wait_for_init_deassert = noop_wait_for_deassert;
|
|
|
+ apic->wait_for_init_deassert = NULL;
|
|
|
apic->wakeup_cpu = wakeup_secondary_cpu_via_mip;
|
|
|
}
|
|
|
|