Add the fields needed to store the cookies.
This commit is contained in:
parent
659df154a5
commit
8feb725eb1
@ -79,6 +79,13 @@ typedef struct ohci_softc {
|
||||
bus_space_tag_t iot;
|
||||
bus_space_handle_t ioh;
|
||||
|
||||
#if defined(__FreeBSD__)
|
||||
void *ih;
|
||||
|
||||
struct resource *io_res;
|
||||
struct resource *irq_res;
|
||||
#endif
|
||||
|
||||
usb_dma_t sc_hccadma;
|
||||
struct ohci_hcca *sc_hcca;
|
||||
ohci_soft_ed_t *sc_eds[OHCI_NO_EDS];
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user