Module Name:    src
Committed By:   jakllsch
Date:           Wed Aug 21 17:52:10 UTC 2013

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

Log Message:
swap positions of ehci_root_ctrl_done and ehci_root_intr_done so that they
are grouped with their respective transfer types


To generate a diff of this commit:
cvs rdiff -u -r1.207 -r1.208 src/sys/dev/usb/ehci.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/ehci.c
diff -u src/sys/dev/usb/ehci.c:1.207 src/sys/dev/usb/ehci.c:1.208
--- src/sys/dev/usb/ehci.c:1.207	Tue Jun 25 15:32:23 2013
+++ src/sys/dev/usb/ehci.c	Wed Aug 21 17:52:10 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: ehci.c,v 1.207 2013/06/25 15:32:23 jakllsch Exp $ */
+/*	$NetBSD: ehci.c,v 1.208 2013/08/21 17:52:10 jakllsch Exp $ */
 
 /*
  * Copyright (c) 2004-2012 The NetBSD Foundation, Inc.
@@ -53,7 +53,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.207 2013/06/25 15:32:23 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.208 2013/08/21 17:52:10 jakllsch Exp $");
 
 #include "ohci.h"
 #include "uhci.h"
@@ -2544,7 +2544,7 @@ ehci_root_ctrl_close(usbd_pipe_handle pi
 }
 
 Static void
-ehci_root_intr_done(usbd_xfer_handle xfer)
+ehci_root_ctrl_done(usbd_xfer_handle xfer)
 {
 	xfer->hcpriv = NULL;
 }
@@ -2613,7 +2613,7 @@ ehci_root_intr_close(usbd_pipe_handle pi
 }
 
 Static void
-ehci_root_ctrl_done(usbd_xfer_handle xfer)
+ehci_root_intr_done(usbd_xfer_handle xfer)
 {
 	xfer->hcpriv = NULL;
 }

Reply via email to