All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] PnP Fixes for 2.6.10-rc1
@ 2004-10-25  4:51 Adam Belay
  2004-10-25  4:52 ` Adam Belay
  0 siblings, 1 reply; 3+ messages in thread
From: Adam Belay @ 2004-10-25  4:51 UTC (permalink / raw)
  To: linux-kernel

#   2004/10/24 23:07:32-04:00 ambx1@neo.rr.com
#   [PNPBIOS] disable if ACPI is active
#   
#   As further ACPI pnp functionaility is implemented it is no longer
#   safe to run ACPI and PNPBIOS concurrently.
#   
#   We therefore take the following approach:
#   - attempt to enable ACPI support
#   - if ACPI fails (blacklist etc.) enable pnpbios support
#   - if ACPI support is not compiled in the kernel enable pnpbios support
#   
#   Signed-off-by: Adam Belay <ambx1@neo.rr.com>

diff -Nru a/drivers/pnp/pnpbios/core.c b/drivers/pnp/pnpbios/core.c
--- a/drivers/pnp/pnpbios/core.c	2004-10-25 00:08:19 -04:00
+++ b/drivers/pnp/pnpbios/core.c	2004-10-25 00:08:19 -04:00
@@ -538,6 +538,12 @@
 		return -ENODEV;
 	}
 
+	if (!acpi_disabled) {
+		pnpbios_disabled = 1;
+		printk(KERN_INFO "PnPBIOS: Disabled by ACPI\n");
+		return -ENODEV;
+	}
+
 	/* scan the system for pnpbios support */
 	if (!pnpbios_probe_system())
 		return -ENODEV;

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2004-10-25  4:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-10-25  4:51 [PATCH] PnP Fixes for 2.6.10-rc1 Adam Belay
2004-10-25  4:52 ` Adam Belay
2004-10-25  4:53   ` Adam Belay

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.