svn commit: r188082 - user/thompsa/usb/sys/dev/usb2/ethernet
Andrew Thompson
thompsa at FreeBSD.org
Tue Feb 3 10:08:32 PST 2009
Author: thompsa
Date: Tue Feb 3 18:08:32 2009
New Revision: 188082
URL: http://svn.freebsd.org/changeset/base/188082
Log:
Use the correct pointer, it didnt actually matter as they had the same value.
Submitted by: HPS
Modified:
user/thompsa/usb/sys/dev/usb2/ethernet/usb2_ethernet.c
Modified: user/thompsa/usb/sys/dev/usb2/ethernet/usb2_ethernet.c
==============================================================================
--- user/thompsa/usb/sys/dev/usb2/ethernet/usb2_ethernet.c Tue Feb 3 18:07:21 2009 (r188081)
+++ user/thompsa/usb/sys/dev/usb2/ethernet/usb2_ethernet.c Tue Feb 3 18:08:32 2009 (r188082)
@@ -213,7 +213,7 @@ ue_init_locked(struct usb2_ether *ue)
* detached while the driver init is sleeping.
*/
ue->ue_flags |= UE_FLAG_INIT;
- ue->ue_init(ue->ue_sc);
+ ue->ue_init(ue);
ue->ue_flags &= ~UE_FLAG_INIT;
usb2_cv_signal(&ue->ue_cv);
More information about the svn-src-user
mailing list