svn commit: r212345 - user/weongyo/usb/sys/dev/usb/net

Weongyo Jeong weongyo at FreeBSD.org
Thu Sep 9 00:39:25 UTC 2010


Author: weongyo
Date: Thu Sep  9 00:39:24 2010
New Revision: 212345
URL: http://svn.freebsd.org/changeset/base/212345

Log:
  Should call axe_start() at axe_init*() routines to start USB transfers
  on each endpoints.

Modified:
  user/weongyo/usb/sys/dev/usb/net/if_axe.c

Modified: user/weongyo/usb/sys/dev/usb/net/if_axe.c
==============================================================================
--- user/weongyo/usb/sys/dev/usb/net/if_axe.c	Thu Sep  9 00:34:55 2010	(r212344)
+++ user/weongyo/usb/sys/dev/usb/net/if_axe.c	Thu Sep  9 00:39:24 2010	(r212345)
@@ -1229,6 +1229,7 @@ axe_init_locked(struct axe_softc *sc)
 
 	ifp->if_drv_flags |= IFF_DRV_RUNNING;
 	sleepout_reset(&sc->sc_watchdog, hz, axe_watchdog, sc);
+	axe_start(sc->sc_ifp);
 }
 
 static void


More information about the svn-src-user mailing list