summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1994-10-17 21:11:31 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1994-10-17 21:11:31 +0000
commit161e7c8d87e45a6a3d0bf29f6ce523ffe84c54c5 (patch)
tree18d87bfcc8eee1da035751fa053cd72952c4f714
parent677060b407002c1d885b67d91942054bfe5859ee (diff)
Notes
-rw-r--r--sys/i386/pci/pcisupport.c4
-rw-r--r--sys/pci/pcisupport.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/sys/i386/pci/pcisupport.c b/sys/i386/pci/pcisupport.c
index a429e54913bf..67242fbb53f9 100644
--- a/sys/i386/pci/pcisupport.c
+++ b/sys/i386/pci/pcisupport.c
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: pcisupport.c,v 1.2 1994/10/13 01:12:31 se Exp $
+** $Id: pcisupport.c,v 1.3 1994/10/15 23:27:39 se Exp $
**
** Device driver for INTEL PCI chipsets.
**
@@ -258,6 +258,7 @@ static void writeconfig(pcici_t config_id, struct condmsg *tbl)
void chipset_attach(pcici_t config_id, int unit)
{
+#ifdef PROBE_VERBOSE
switch (pci_conf_read (config_id, 0)) {
case 0x04838086:
@@ -274,6 +275,7 @@ void chipset_attach(pcici_t config_id, int unit)
pci_conf_read (config_id, 0x54));
break;
};
+#endif
}
/*---------------------------------------------------------
diff --git a/sys/pci/pcisupport.c b/sys/pci/pcisupport.c
index a429e54913bf..67242fbb53f9 100644
--- a/sys/pci/pcisupport.c
+++ b/sys/pci/pcisupport.c
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: pcisupport.c,v 1.2 1994/10/13 01:12:31 se Exp $
+** $Id: pcisupport.c,v 1.3 1994/10/15 23:27:39 se Exp $
**
** Device driver for INTEL PCI chipsets.
**
@@ -258,6 +258,7 @@ static void writeconfig(pcici_t config_id, struct condmsg *tbl)
void chipset_attach(pcici_t config_id, int unit)
{
+#ifdef PROBE_VERBOSE
switch (pci_conf_read (config_id, 0)) {
case 0x04838086:
@@ -274,6 +275,7 @@ void chipset_attach(pcici_t config_id, int unit)
pci_conf_read (config_id, 0x54));
break;
};
+#endif
}
/*---------------------------------------------------------