Module Name:    src
Committed By:   jmcneill
Date:           Thu Jan 10 20:31:05 UTC 2013

Modified Files:
        src/sys/dev/usb: dwc_otg.c

Log Message:
add missing call to dwc_otg_xfer_end() in dwc_otg_device_bulk_done


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/usb/dwc_otg.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/usb/dwc_otg.c
diff -u src/sys/dev/usb/dwc_otg.c:1.1 src/sys/dev/usb/dwc_otg.c:1.2
--- src/sys/dev/usb/dwc_otg.c:1.1	Wed Jan  9 22:23:44 2013
+++ src/sys/dev/usb/dwc_otg.c	Thu Jan 10 20:31:04 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: dwc_otg.c,v 1.1 2013/01/09 22:23:44 skrll Exp $	*/
+/*	$NetBSD: dwc_otg.c,v 1.2 2013/01/10 20:31:04 jmcneill Exp $	*/
 
 /*-
  * Copyright (c) 2012 Hans Petter Selasky. All rights reserved.
@@ -60,7 +60,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dwc_otg.c,v 1.1 2013/01/09 22:23:44 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dwc_otg.c,v 1.2 2013/01/10 20:31:04 jmcneill Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -1410,6 +1410,7 @@ dwc_otg_device_bulk_done(usbd_xfer_handl
 
 	DPRINTF("\n");
 
+	dwc_otg_xfer_end(xfer);
 	sc = sc;
 }
 

Reply via email to