Module Name:    src
Committed By:   skrll
Date:           Fri Mar 22 12:47:56 UTC 2013

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

Log Message:
Remove 'return' right after 'goto'


To generate a diff of this commit:
cvs rdiff -u -r1.232 -r1.233 src/sys/dev/usb/ohci.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/ohci.c
diff -u src/sys/dev/usb/ohci.c:1.232 src/sys/dev/usb/ohci.c:1.233
--- src/sys/dev/usb/ohci.c:1.232	Tue Jan 29 00:00:15 2013
+++ src/sys/dev/usb/ohci.c	Fri Mar 22 12:47:56 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: ohci.c,v 1.232 2013/01/29 00:00:15 christos Exp $	*/
+/*	$NetBSD: ohci.c,v 1.233 2013/03/22 12:47:56 skrll Exp $	*/
 
 /*
  * Copyright (c) 1998, 2004, 2005, 2012 The NetBSD Foundation, Inc.
@@ -41,7 +41,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.232 2013/01/29 00:00:15 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.233 2013/03/22 12:47:56 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -2323,7 +2323,6 @@ ohci_abort_xfer(usbd_xfer_handle xfer, u
 		while (xfer->hcflags & UXFER_ABORTING)
 			cv_wait(&xfer->hccv, &sc->sc_lock);
 		goto done;
-		return;
 	}
 	xfer->hcflags |= UXFER_ABORTING;
 

Reply via email to