summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/net
diff options
context:
space:
mode:
authorn_hibma <n_hibma@FreeBSD.org>2010-11-05 19:12:48 +0000
committern_hibma <n_hibma@FreeBSD.org>2010-11-05 19:12:48 +0000
commit6a88b24ee2d7ca5016b91d9d019359d50e6924df (patch)
tree59ac6a21c775bdb2ae4ada9162ee26328cebdb90 /sys/dev/usb/net
parent971417400f71b1a51b320f7a4dfcd777980d1469 (diff)
downloadFreeBSD-src-6a88b24ee2d7ca5016b91d9d019359d50e6924df.zip
FreeBSD-src-6a88b24ee2d7ca5016b91d9d019359d50e6924df.tar.gz
Implement ucom_set_pnpinfo_usb() providing ttyname and port number
information through devd. My E220 now produces the notification (1 line): +u3g0 at bus=1 hubaddr=1 port=0 devaddr=2 interface=0 \ vendor=0x12d1 product=0x1003 devclass=0x00 devsubclass=0x00 \ sernum="" release=0x0000 intclass=0xff intsubclass=0xff \ ttyname=U0 ttyports=2 on uhub0 Note: serial/ufoma and net/uhso still provide port number and tty name (uhso only) information through sysctls, which should now be removed. Reviewed by: hpselasky
Diffstat (limited to 'sys/dev/usb/net')
-rw-r--r--sys/dev/usb/net/uhso.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/usb/net/uhso.c b/sys/dev/usb/net/uhso.c
index 63c6dcf..06ac416 100644
--- a/sys/dev/usb/net/uhso.c
+++ b/sys/dev/usb/net/uhso.c
@@ -902,6 +902,7 @@ uhso_probe_iface(struct uhso_softc *sc, int index,
device_printf(sc->sc_dev, "ucom_attach failed\n");
return (ENXIO);
}
+ ucom_set_pnpinfo_usb(&sc->sc_super_ucom, sc->sc_dev);
mtx_lock(&sc->sc_mtx);
usbd_transfer_start(sc->sc_xfer[UHSO_MUX_ENDPT_INTR]);
@@ -920,6 +921,7 @@ uhso_probe_iface(struct uhso_softc *sc, int index,
device_printf(sc->sc_dev, "ucom_attach failed\n");
return (ENXIO);
}
+ ucom_set_pnpinfo_usb(&sc->sc_super_ucom, sc->sc_dev);
}
else {
UHSO_DPRINTF(0, "Unknown type %x\n", type);
OpenPOWER on IntegriCloud