aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/pnp/pnpbios/core.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/drivers/pnp/pnpbios/core.c b/drivers/pnp/pnpbios/core.c
index 996f64838079..e706d22b6dd1 100644
--- a/drivers/pnp/pnpbios/core.c
+++ b/drivers/pnp/pnpbios/core.c
@@ -575,8 +575,6 @@ fs_initcall(pnpbios_init);
575 575
576static int __init pnpbios_thread_init(void) 576static int __init pnpbios_thread_init(void)
577{ 577{
578 struct task_struct *task;
579
580#if defined(CONFIG_PPC) 578#if defined(CONFIG_PPC)
581 if (check_legacy_ioport(PNPBIOS_BASE)) 579 if (check_legacy_ioport(PNPBIOS_BASE))
582 return 0; 580 return 0;
@@ -584,10 +582,13 @@ static int __init pnpbios_thread_init(void)
584 if (pnpbios_disabled) 582 if (pnpbios_disabled)
585 return 0; 583 return 0;
586#ifdef CONFIG_HOTPLUG 584#ifdef CONFIG_HOTPLUG
587 init_completion(&unload_sem); 585 {
588 task = kthread_run(pnp_dock_thread, NULL, "kpnpbiosd"); 586 struct task_struct *task;
589 if (!IS_ERR(task)) 587 init_completion(&unload_sem);
590 unloading = 0; 588 task = kthread_run(pnp_dock_thread, NULL, "kpnpbiosd");
589 if (!IS_ERR(task))
590 unloading = 0;
591 }
591#endif 592#endif
592 return 0; 593 return 0;
593} 594}