diff options
author | n_hibma <n_hibma@FreeBSD.org> | 2000-05-07 20:17:30 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 2000-05-07 20:17:30 +0000 |
commit | c5cb9b7f77ae483646529350284c050ea7b481aa (patch) | |
tree | 53137713563810ba40cdf48fc189536177d1a434 /sys/dev/usb/uhcivar.h | |
parent | d9cfc650630464627df346b97c4dd728a95818bb (diff) | |
download | FreeBSD-src-c5cb9b7f77ae483646529350284c050ea7b481aa.zip FreeBSD-src-c5cb9b7f77ae483646529350284c050ea7b481aa.tar.gz |
Add the fields needed to store the cookies.
Diffstat (limited to 'sys/dev/usb/uhcivar.h')
-rw-r--r-- | sys/dev/usb/uhcivar.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/dev/usb/uhcivar.h b/sys/dev/usb/uhcivar.h index 30ba97d..bfd6a07 100644 --- a/sys/dev/usb/uhcivar.h +++ b/sys/dev/usb/uhcivar.h @@ -130,6 +130,12 @@ typedef struct uhci_softc { struct usbd_bus sc_bus; /* base device */ bus_space_tag_t iot; bus_space_handle_t ioh; +#if defined(__FreeBSD__) + void *ih; + + struct resource *io_res; + struct resource *irq_res; +#endif uhci_physaddr_t *sc_pframes; usb_dma_t sc_dma; |