diff options
author | yongari <yongari@FreeBSD.org> | 2012-05-31 23:56:10 +0000 |
---|---|---|
committer | yongari <yongari@FreeBSD.org> | 2012-05-31 23:56:10 +0000 |
commit | 561f6739ea31a62502eb6920aacd8d77195503b7 (patch) | |
tree | ae95da50e0b691343d0b970351919a114588459a /sys/dev/bge | |
parent | 9eb7711d51be5cc77f8b0e9609a128171d6da41a (diff) | |
download | FreeBSD-src-561f6739ea31a62502eb6920aacd8d77195503b7.zip FreeBSD-src-561f6739ea31a62502eb6920aacd8d77195503b7.tar.gz |
Remove unnecessary device_printfs.
Pointed out by: marius
Diffstat (limited to 'sys/dev/bge')
-rw-r--r-- | sys/dev/bge/if_bge.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/dev/bge/if_bge.c b/sys/dev/bge/if_bge.c index 545d704..cbca52b 100644 --- a/sys/dev/bge/if_bge.c +++ b/sys/dev/bge/if_bge.c @@ -2776,17 +2776,9 @@ bge_mbox_reorder(struct bge_softc *sc) for (;;) { dev = device_get_parent(bus); bus = device_get_parent(dev); - device_printf(sc->bge_dev, "dev : %s%d, bus : %s%d\n", - device_get_name(dev), device_get_unit(dev), - device_get_name(bus), device_get_unit(bus)); if (device_get_devclass(dev) != pcib) break; for (i = 0; i < count; i++) { - device_printf(sc->bge_dev, - "probing dev : %s%d, vendor : 0x%04x " - "device : 0x%04x\n", - device_get_name(dev), device_get_unit(dev), - pci_get_vendor(dev), pci_get_device(dev)); if (pci_get_vendor(dev) == mbox_reorder_lists[i].vendor && pci_get_device(dev) == |