diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1998-12-09 23:36:15 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1998-12-09 23:36:15 +0000 |
commit | ff213ddb78391d3b7987d882cee8311e71bfcee6 (patch) | |
tree | 250fd09c4c1fabc311884a9c64176e48dc077267 /sys/dev/usb/uhcivar.h | |
parent | 1e167561f8097938bd2ee681a27aa32b3b30ce93 (diff) | |
download | FreeBSD-src-ff213ddb78391d3b7987d882cee8311e71bfcee6.zip FreeBSD-src-ff213ddb78391d3b7987d882cee8311e71bfcee6.tar.gz |
Various bug fixes:
1) Removed 'emulation' of bitmaps in printfs, FreeBSD seems to have caught
up on that one
2) Fixed a few bugs in the timeout/timo timeout variables
3) First attempt at fixing a bug mentioned by Kazu: uhci_run is not able
start/stop his USB host on his motherboard.
Diffstat (limited to 'sys/dev/usb/uhcivar.h')
-rw-r--r-- | sys/dev/usb/uhcivar.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/usb/uhcivar.h b/sys/dev/usb/uhcivar.h index b7102f3..9891908 100644 --- a/sys/dev/usb/uhcivar.h +++ b/sys/dev/usb/uhcivar.h @@ -63,7 +63,7 @@ typedef struct uhci_soft_td uhci_soft_td_t; */ typedef struct uhci_intr_info { #if defined(__FreeBSD__) - struct callout_handle callout_handler; + struct callout_handle timeout_handle; #endif struct uhci_softc *sc; usbd_request_handle reqh; @@ -124,7 +124,6 @@ typedef struct uhci_softc { /* XXX should keep track of all DMA memory */ #elif defined(__FreeBSD__) int sc_iobase; - int sc_int; int unit; #endif |