Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/usb swap positions of ehci_root_ctrl_done and ehci_r...
details: https://anonhg.NetBSD.org/src/rev/d729403b86e3
branches: trunk
changeset: 789541:d729403b86e3
user: jakllsch <jakllsch%NetBSD.org@localhost>
date: Wed Aug 21 17:52:10 2013 +0000
description:
swap positions of ehci_root_ctrl_done and ehci_root_intr_done so that they
are grouped with their respective transfer types
diffstat:
sys/dev/usb/ehci.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r cce2fac93dd9 -r d729403b86e3 sys/dev/usb/ehci.c
--- a/sys/dev/usb/ehci.c Wed Aug 21 17:25:58 2013 +0000
+++ b/sys/dev/usb/ehci.c Wed Aug 21 17:52:10 2013 +0000
@@ -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 @@
}
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 @@
}
Static void
-ehci_root_ctrl_done(usbd_xfer_handle xfer)
+ehci_root_intr_done(usbd_xfer_handle xfer)
{
xfer->hcpriv = NULL;
}
Home |
Main Index |
Thread Index |
Old Index