summaryrefslogtreecommitdiffstats
path: root/sys/dev/firewire
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2004-07-01 07:46:29 +0000
committerjhb <jhb@FreeBSD.org>2004-07-01 07:46:29 +0000
commit900e7c295df4b2ceeb962eed75c09dcd513e8474 (patch)
tree21d778c675dd108d89c9cdf1b6991ddb90939ee8 /sys/dev/firewire
parent3c5c35a72b44c745361adcdc5002abdd00233ca6 (diff)
downloadFreeBSD-src-900e7c295df4b2ceeb962eed75c09dcd513e8474.zip
FreeBSD-src-900e7c295df4b2ceeb962eed75c09dcd513e8474.tar.gz
Trim a few things from the dmesg output and stick them under bootverbose to
cut down on the clutter including PCI interrupt routing, MTRR, pcibios, etc. Discussed with: USENIX Cabal
Diffstat (limited to 'sys/dev/firewire')
-rw-r--r--sys/dev/firewire/fwohci_pci.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/firewire/fwohci_pci.c b/sys/dev/firewire/fwohci_pci.c
index b1ee33d..5331629 100644
--- a/sys/dev/firewire/fwohci_pci.c
+++ b/sys/dev/firewire/fwohci_pci.c
@@ -187,8 +187,9 @@ fwohci_pci_probe( device_t dev )
if (pci_get_class(dev) == PCIC_SERIALBUS
&& pci_get_subclass(dev) == PCIS_SERIALBUS_FW
&& pci_get_progif(dev) == PCI_INTERFACE_OHCI) {
- device_printf(dev, "vendor=%x, dev=%x\n", pci_get_vendor(dev),
- pci_get_device(dev));
+ if (bootverbose)
+ device_printf(dev, "vendor=%x, dev=%x\n",
+ pci_get_vendor(dev), pci_get_device(dev));
device_set_desc(dev, "1394 Open Host Controller Interface");
return 0;
}
OpenPOWER on IntegriCloud