Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/usb add missing call to dwc_otg_xfer_end() in dwc_ot...



details:   https://anonhg.NetBSD.org/src/rev/df3a358d2e63
branches:  trunk
changeset: 783858:df3a358d2e63
user:      jmcneill <jmcneill%NetBSD.org@localhost>
date:      Thu Jan 10 20:31:04 2013 +0000

description:
add missing call to dwc_otg_xfer_end() in dwc_otg_device_bulk_done

diffstat:

 sys/dev/usb/dwc_otg.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r e87b27d63997 -r df3a358d2e63 sys/dev/usb/dwc_otg.c
--- a/sys/dev/usb/dwc_otg.c     Thu Jan 10 19:14:12 2013 +0000
+++ b/sys/dev/usb/dwc_otg.c     Thu Jan 10 20:31:04 2013 +0000
@@ -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 @@
 
        DPRINTF("\n");
 
+       dwc_otg_xfer_end(xfer);
        sc = sc;
 }
 



Home | Main Index | Thread Index | Old Index