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 uhci_root_ctrl_done() method.



details:   https://anonhg.NetBSD.org/src/rev/8e9963120a17
branches:  trunk
changeset: 481391:8e9963120a17
user:      augustss <augustss%NetBSD.org@localhost>
date:      Fri Jan 28 00:44:27 2000 +0000

description:
Add uhci_root_ctrl_done() method.

diffstat:

 sys/dev/usb/uhci.c |  11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diffs (39 lines):

diff -r caf6b71d43a4 -r 8e9963120a17 sys/dev/usb/uhci.c
--- a/sys/dev/usb/uhci.c        Fri Jan 28 00:29:53 2000 +0000
+++ b/sys/dev/usb/uhci.c        Fri Jan 28 00:44:27 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uhci.c,v 1.83 2000/01/28 00:15:54 augustss Exp $       */
+/*     $NetBSD: uhci.c,v 1.84 2000/01/28 00:44:27 augustss Exp $       */
 /*     $FreeBSD: src/sys/dev/usb/uhci.c,v 1.33 1999/11/17 22:33:41 n_hibma Exp $       */
 
 /*
@@ -226,6 +226,7 @@
 static usbd_status     uhci_root_ctrl_start __P((usbd_xfer_handle));
 static void            uhci_root_ctrl_abort __P((usbd_xfer_handle));
 static void            uhci_root_ctrl_close __P((usbd_pipe_handle));
+static void            uhci_root_ctrl_done  __P((usbd_xfer_handle));
 
 static usbd_status     uhci_root_intr_transfer __P((usbd_xfer_handle));
 static usbd_status     uhci_root_intr_start __P((usbd_xfer_handle));
@@ -286,7 +287,7 @@
        uhci_root_ctrl_abort,
        uhci_root_ctrl_close,
        uhci_noop,
-       0,
+       uhci_root_ctrl_done,
 };
 
 struct usbd_pipe_methods uhci_root_intr_methods = {    
@@ -790,6 +791,12 @@
 }
 
 void
+uhci_root_ctrl_done(xfer)
+       usbd_xfer_handle xfer;
+{
+}
+
+void
 uhci_lock_frames(sc)
        uhci_softc_t *sc;
 {



Home | Main Index | Thread Index | Old Index