diff options
author | Erik Ekman <erik@kryo.se> | 2009-04-02 19:57:08 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-02 22:04:52 -0400 |
commit | 8c655918b15691d3a97f4e9a7c3c0a6ac992e297 (patch) | |
tree | ee6f47740938ffc21174728b656f17871b67a173 /drivers/pnp/pnpbios | |
parent | bfb9bcdbda9a61bca469bf899a589918c60c4c18 (diff) |
pnpbios: fix warning if CONFIG_HOTPLUG=n
drivers/pnp/pnpbios/core.c: In function 'pnpbios_thread_init':
drivers/pnp/pnpbios/core.c:578: warning: unused variable 'task'
Signed-off-by: Erik Ekman <erik@kryo.se>
Cc: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/pnp/pnpbios')
-rw-r--r-- | drivers/pnp/pnpbios/core.c | 13 |
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 | ||
576 | static int __init pnpbios_thread_init(void) | 576 | static 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 | } |