mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
#ifdef'ed the verbose probe messages. Only until I find a good way of
making it run-time selectable, then it will be back (at will).
This commit is contained in:
parent
677060b407
commit
161e7c8d87
2 changed files with 6 additions and 2 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Reference in a new issue