Commit e65c867f authored by Adam Belay's avatar Adam Belay

Merge http://linux.bkbits.net/linux-2.5

into neo.rr.com:/home/amb/linux/bk/pnp-stable
parents b5249809 31b4ab3c
...@@ -60,6 +60,7 @@ ...@@ -60,6 +60,7 @@
#include <linux/completion.h> #include <linux/completion.h>
#include <linux/spinlock.h> #include <linux/spinlock.h>
#include <linux/dmi.h> #include <linux/dmi.h>
#include <linux/delay.h>
#include <asm/page.h> #include <asm/page.h>
#include <asm/desc.h> #include <asm/desc.h>
...@@ -177,8 +178,7 @@ static int pnp_dock_thread(void * unused) ...@@ -177,8 +178,7 @@ static int pnp_dock_thread(void * unused)
/* /*
* Poll every 2 seconds * Poll every 2 seconds
*/ */
set_current_state(TASK_INTERRUPTIBLE); msleep_interruptible(2000);
schedule_timeout(HZ*2);
if(signal_pending(current)) if(signal_pending(current))
break; break;
...@@ -538,6 +538,14 @@ int __init pnpbios_init(void) ...@@ -538,6 +538,14 @@ int __init pnpbios_init(void)
return -ENODEV; return -ENODEV;
} }
#ifdef CONFIG_ACPI
if (!acpi_disabled) {
pnpbios_disabled = 1;
printk(KERN_INFO "PnPBIOS: Disabled by ACPI\n");
return -ENODEV;
}
#endif /* CONFIG_ACPI */
/* scan the system for pnpbios support */ /* scan the system for pnpbios support */
if (!pnpbios_probe_system()) if (!pnpbios_probe_system())
return -ENODEV; return -ENODEV;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment