Lines Matching defs:brcmf_usbdev_info
127 struct brcmf_usbdev_info { struct
128 struct brcmf_usbdev bus_pub; /* MUST BE FIRST */
129 spinlock_t qlock;
130 struct list_head rx_freeq;
131 struct list_head rx_postq;
132 struct list_head tx_freeq;
133 struct list_head tx_postq;
134 uint rx_pipe, tx_pipe;
136 int rx_low_watermark;
137 int tx_low_watermark;
138 int tx_high_watermark;
139 int tx_freecount;
140 bool tx_flowblock;
141 spinlock_t tx_flowblock_lock;
143 struct brcmf_usbreq *tx_reqs;
144 struct brcmf_usbreq *rx_reqs;
146 char fw_name[BRCMF_FW_NAME_LEN];
170 static void brcmf_usb_rx_refill(struct brcmf_usbdev_info *devinfo, argument