summaryrefslogtreecommitdiff
path: root/sys/dev/usb/ohci.c
diff options
context:
space:
mode:
authorNathan Binkert <nate@cvs.openbsd.org>2002-05-02 20:08:05 +0000
committerNathan Binkert <nate@cvs.openbsd.org>2002-05-02 20:08:05 +0000
commit587cdcf5ce16c5aed5152f0f3d18dd160f0b0298 (patch)
treef979ced1393dcf5359606845c182ae8bae6dc547 /sys/dev/usb/ohci.c
parentb1dc8814f8402c854f3054f917ec6a6afa3a8a42 (diff)
prefix structure members to avoid name clashes.
From NetBSD
Diffstat (limited to 'sys/dev/usb/ohci.c')
-rw-r--r--sys/dev/usb/ohci.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c
index c9d38044caa..c1e83997e64 100644
--- a/sys/dev/usb/ohci.c
+++ b/sys/dev/usb/ohci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ohci.c,v 1.25 2002/03/14 03:16:08 millert Exp $ */
+/* $OpenBSD: ohci.c,v 1.26 2002/05/02 20:08:04 nate Exp $ */
/* $NetBSD: ohci.c,v 1.104 2001/09/28 23:57:21 augustss Exp $ */
/* $FreeBSD: src/sys/dev/usb/ohci.c,v 1.22 1999/11/17 22:33:40 n_hibma Exp $ */
@@ -205,6 +205,7 @@ Static int ohci_str(usb_string_descriptor_t *, int, char *);
Static void ohci_timeout(void *);
Static void ohci_rhsc_able(ohci_softc_t *, int);
+Static void ohci_rhsc_enable(void *sc);
Static void ohci_close_pipe(usbd_pipe_handle, ohci_soft_ed_t *);
Static void ohci_abort_xfer(usbd_xfer_handle, usbd_status);
@@ -636,6 +637,15 @@ ohci_free_sitd(ohci_softc_t *sc, ohci_soft_itd_t *sitd)
splx(s);
}
+void
+ohci_reset(ohci_softc_t *sc)
+{
+ ohci_shutdown(sc);
+ /* disable all interrupts and then switch on all desired
+ interrupts */
+ OWRITE4(sc, OHCI_INTERRUPT_DISABLE, OHCI_ALL_INTRS);
+}
+
usbd_status
ohci_init(ohci_softc_t *sc)
{
@@ -861,6 +871,9 @@ ohci_init(ohci_softc_t *sc)
sc->sc_powerhook = powerhook_establish(ohci_power, sc);
sc->sc_shutdownhook = shutdownhook_establish(ohci_shutdown, sc);
#endif
+#if defined(__OpenBSD__)
+ timeout_set(&sc->sc_tmo_rhsc, ohci_rhsc_enable, sc);
+#endif
return (USBD_NORMAL_COMPLETION);