• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/sys/dev/usb/net/

Lines Matching refs:ue

186 static int smsc_attach_post_sub(struct usb_ether *ue);
690 * @ue: usb ethernet device context
699 smsc_setmulti(struct usb_ether *ue)
701 struct smsc_softc *sc = uether_getsc(ue);
702 struct ifnet *ifp = uether_getifp(ue);
755 * @ue: usb ethernet device context
761 smsc_setpromisc(struct usb_ether *ue)
763 struct smsc_softc *sc = uether_getsc(ue);
764 struct ifnet *ifp = uether_getifp(ue);
894 * @ue: USB ether interface
903 smsc_init(struct usb_ether *ue)
905 struct smsc_softc *sc = uether_getsc(ue);
906 struct ifnet *ifp = uether_getifp(ue);
917 smsc_stop(ue);
941 smsc_setmulti(ue);
953 smsc_start(ue);
971 struct usb_ether *ue = &sc->sc_ue;
972 struct ifnet *ifp = uether_getifp(ue);
1103 uether_rxmbuf(ue, m, pktlen - 4);
1116 uether_rxflush(ue);
1224 * @ue: USB ether interface
1232 smsc_tick(struct usb_ether *ue)
1234 struct smsc_softc *sc = uether_getsc(ue);
1241 smsc_miibus_statchg(ue->ue_dev);
1243 smsc_start(ue);
1249 * @ue: USB ether interface
1255 smsc_start(struct usb_ether *ue)
1257 struct smsc_softc *sc = uether_getsc(ue);
1268 * @ue: USB ether interface
1274 smsc_stop(struct usb_ether *ue)
1276 struct smsc_softc *sc = uether_getsc(ue);
1277 struct ifnet *ifp = uether_getifp(ue);
1527 struct usb_ether *ue = ifp->if_softc;
1536 sc = uether_getsc(ue);
1560 uether_init(ue);
1562 ifp->if_init(ue);
1574 * @ue: the USB ethernet device
1583 smsc_attach_post(struct usb_ether *ue)
1585 struct smsc_softc *sc = uether_getsc(ue);
1636 * @ue: the USB ethernet device
1647 smsc_attach_post_sub(struct usb_ether *ue)
1653 sc = uether_getsc(ue);
1654 ifp = ue->ue_ifp;
1678 error = mii_attach(ue->ue_dev, &ue->ue_miibus, ifp,
1679 uether_ifmedia_upd, ue->ue_methods->ue_mii_sts,
1727 struct usb_ether *ue = &sc->sc_ue;
1746 ue->ue_sc = sc;
1747 ue->ue_dev = dev;
1748 ue->ue_udev = uaa->device;
1749 ue->ue_mtx = &sc->sc_mtx;
1750 ue->ue_methods = &smsc_ue_methods;
1752 err = uether_ifattach(ue);
1775 struct usb_ether *ue = &sc->sc_ue;
1778 uether_ifdetach(ue);