summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2004-04-16 04:50:54 +0000
committerimp <imp@FreeBSD.org>2004-04-16 04:50:54 +0000
commit76cce3c9b2a2922bd96c64e7866272ab846b998c (patch)
treed33c30572f8d3958ff89af1a7b4f97a8f2f67de3
parent647c7ba551397b43d2da9e88b1b14919c128b28b (diff)
downloadFreeBSD-src-76cce3c9b2a2922bd96c64e7866272ab846b998c.zip
FreeBSD-src-76cce3c9b2a2922bd96c64e7866272ab846b998c.tar.gz
Turn off the power stuff for a little while longer. There appears to be
something subtle wrong with it.
-rw-r--r--sys/dev/pci/pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c
index 6e728b4..98abf8a 100644
--- a/sys/dev/pci/pci.c
+++ b/sys/dev/pci/pci.c
@@ -168,10 +168,10 @@ uint32_t pci_numdevs = 0;
/* sysctl vars */
SYSCTL_NODE(_hw, OID_AUTO, pci, CTLFLAG_RD, 0, "PCI bus tuning parameters");
-static int pci_enable_io_modes = 1;
+static int pci_enable_io_modes = 0;
TUNABLE_INT("hw.pci.enable_io_modes", (int *)&pci_enable_io_modes);
SYSCTL_INT(_hw_pci, OID_AUTO, enable_io_modes, CTLFLAG_RW,
- &pci_enable_io_modes, 1,
+ &pci_enable_io_modes, 0,
"Enable I/O and memory bits in the config register. Some BIOSes do not\n\
enable these bits correctly. We'd like to do this all the time, but there\n\
are some peripherals that this causes problems with.");
OpenPOWER on IntegriCloud