View | Details | Raw Unified | Return to bug 264855
Collapse All | Expand All

(-)b/sys/dev/usb/net/if_axe.c (-1 / +2 lines)
Lines 907-913 axe_attach_post_sub(struct usb_ether *ue) Link Here
907
	mtx_lock(&Giant);
907
	mtx_lock(&Giant);
908
	error = mii_attach(ue->ue_dev, &ue->ue_miibus, ifp,
908
	error = mii_attach(ue->ue_dev, &ue->ue_miibus, ifp,
909
	    uether_ifmedia_upd, ue->ue_methods->ue_mii_sts,
909
	    uether_ifmedia_upd, ue->ue_methods->ue_mii_sts,
910
	    BMSR_DEFCAPMASK, sc->sc_phyno, MII_OFFSET_ANY, adv_pause);
910
	    BMSR_DEFCAPMASK, sc->sc_phyno, MII_OFFSET_ANY,
911
		    (sc->sc_flags & AXE_FLAG_772)? adv_pause | MIIF_FORCEANEG : adv_pause);
911
	mtx_unlock(&Giant);
912
	mtx_unlock(&Giant);
912
913
913
	return (error);
914
	return (error);

Return to bug 264855