Date: Fri, 6 Feb 2009 15:27:40 +0000 (UTC) From: Kevin Lo <kevlo@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r188237 - head/sys/dev/usb Message-ID: <200902061527.n16FRemZ064990@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kevlo Date: Fri Feb 6 15:27:40 2009 New Revision: 188237 URL: http://svn.freebsd.org/changeset/base/188237 Log: In urtw_init() call urtw_stop(ifp, 0) rather than urtw_stop(ifp, 1) to stop the device. Modified: head/sys/dev/usb/if_urtw.c Modified: head/sys/dev/usb/if_urtw.c ============================================================================== --- head/sys/dev/usb/if_urtw.c Fri Feb 6 15:09:31 2009 (r188236) +++ head/sys/dev/usb/if_urtw.c Fri Feb 6 15:27:40 2009 (r188237) @@ -2076,7 +2076,7 @@ urtw_init(void *arg) struct ifnet *ifp = sc->sc_ifp; usbd_status error; - urtw_stop(ifp, 1); + urtw_stop(ifp, 0); error = urtw_adapter_start(sc); if (error != 0)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200902061527.n16FRemZ064990>