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