Lines Matching defs:brcmf_usbdev_info
123 struct brcmf_usbdev_info { struct
124 struct brcmf_usbdev bus_pub; /* MUST BE FIRST */
125 spinlock_t qlock;
126 struct list_head rx_freeq;
127 struct list_head rx_postq;
128 struct list_head tx_freeq;
129 struct list_head tx_postq;
130 uint rx_pipe, tx_pipe;
132 int rx_low_watermark;
133 int tx_low_watermark;
134 int tx_high_watermark;
135 int tx_freecount;
136 bool tx_flowblock;
137 spinlock_t tx_flowblock_lock;
139 struct brcmf_usbreq *tx_reqs;
140 struct brcmf_usbreq *rx_reqs;
165 static void brcmf_usb_rx_refill(struct brcmf_usbdev_info *devinfo, argument