aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/bxe
diff options
context:
space:
mode:
authorScott Long <scottl@FreeBSD.org>2016-05-13 05:57:21 +0000
committerScott Long <scottl@FreeBSD.org>2016-05-13 05:57:21 +0000
commitdde1276e8ea21c039c93695e8c18c7dafdfa6793 (patch)
treeb75327fc5232079d8844d94d4f91a2efe2ab5641 /sys/dev/bxe
parente4efa066e19a68bb4e4d5312c679d85ce8c7e0b9 (diff)
Notes
Diffstat (limited to 'sys/dev/bxe')
-rw-r--r--sys/dev/bxe/bxe.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/dev/bxe/bxe.c b/sys/dev/bxe/bxe.c
index 3b5ab1770c90..e832389ba610 100644
--- a/sys/dev/bxe/bxe.c
+++ b/sys/dev/bxe/bxe.c
@@ -2454,14 +2454,11 @@ bxe_sp_post(struct bxe_softc *sc,
static int
bxe_probe(device_t dev)
{
- struct bxe_softc *sc;
struct bxe_device_type *t;
char *descbuf;
uint16_t did, sdid, svid, vid;
/* Find our device structure */
- sc = device_get_softc(dev);
- sc->dev = dev;
t = bxe_devs;
/* Get the data for the device to be probed. */
@@ -2470,10 +2467,6 @@ bxe_probe(device_t dev)
svid = pci_get_subvendor(dev);
sdid = pci_get_subdevice(dev);
- BLOGD(sc, DBG_LOAD,
- "%s(); VID = 0x%04X, DID = 0x%04X, SVID = 0x%04X, "
- "SDID = 0x%04X\n", __FUNCTION__, vid, did, svid, sdid);
-
/* Look through the list of known devices for a match. */
while (t->bxe_name != NULL) {
if ((vid == t->bxe_vid) && (did == t->bxe_did) &&