Home
last modified time | relevance | path

Searched refs:phwxmit (Results 1 – 6 of 6) sorted by relevance

/openbmc/linux/drivers/staging/rtl8723bs/core/
H A Drtw_sta_mgt.c279 struct hw_xmit *phwxmit; in rtw_free_stainfo() local
305 phwxmit = pxmitpriv->hwxmits; in rtw_free_stainfo()
306 phwxmit->accnt -= pstaxmitpriv->vo_q.qcnt; in rtw_free_stainfo()
314 phwxmit = pxmitpriv->hwxmits+1; in rtw_free_stainfo()
315 phwxmit->accnt -= pstaxmitpriv->vi_q.qcnt; in rtw_free_stainfo()
323 phwxmit = pxmitpriv->hwxmits+2; in rtw_free_stainfo()
324 phwxmit->accnt -= pstaxmitpriv->be_q.qcnt; in rtw_free_stainfo()
332 phwxmit = pxmitpriv->hwxmits+3; in rtw_free_stainfo()
333 phwxmit->accnt -= pstaxmitpriv->bk_q.qcnt; in rtw_free_stainfo()
H A Drtw_xmit.c1873 void rtw_init_hwxmits(struct hw_xmit *phwxmit, signed int entry) in rtw_init_hwxmits() argument
1877 for (i = 0; i < entry; i++, phwxmit++) in rtw_init_hwxmits()
1878 phwxmit->accnt = 0; in rtw_init_hwxmits()
/openbmc/linux/drivers/staging/rtl8723bs/hal/
H A Drtl8723bs_xmit.c174 struct hw_xmit *hwxmits, *phwxmit; in xmit_xmitframes() local
205 phwxmit = hwxmits + inx[idx]; in xmit_xmitframes()
211 if ((phwxmit->accnt > 0) && (phwxmit->accnt < 5)) { in xmit_xmitframes()
221 sta_phead = get_list_head(phwxmit->sta_queue); in xmit_xmitframes()
284 phwxmit->accnt--; in xmit_xmitframes()
/openbmc/linux/drivers/staging/rtl8712/
H A Drtl8712_xmit.c150 struct hw_xmit *phwxmit, in dequeue_one_xmitframe() argument
164 phwxmit->txcmdcnt++; in dequeue_one_xmitframe()
174 struct hw_xmit *phwxmit; in dequeue_xframe_ex() local
196 phwxmit = phwxmit_i + inx[i]; in dequeue_xframe_ex()
197 sta_phead = &phwxmit->sta_queue->queue; in dequeue_xframe_ex()
203 pxmitframe = dequeue_one_xmitframe(pxmitpriv, phwxmit, in dequeue_xframe_ex()
206 phwxmit->accnt--; in dequeue_xframe_ex()
H A Drtl871x_xmit.c29 static void init_hwxmits(struct hw_xmit *phwxmit, sint entry);
999 static void init_hwxmits(struct hw_xmit *phwxmit, sint entry) in init_hwxmits() argument
1003 for (i = 0; i < entry; i++, phwxmit++) { in init_hwxmits()
1004 spin_lock_init(&phwxmit->xmit_lock); in init_hwxmits()
1005 INIT_LIST_HEAD(&phwxmit->pending); in init_hwxmits()
1006 phwxmit->txcmdcnt = 0; in init_hwxmits()
1007 phwxmit->accnt = 0; in init_hwxmits()
/openbmc/linux/drivers/staging/rtl8723bs/include/
H A Drtw_xmit.h463 void rtw_init_hwxmits(struct hw_xmit *phwxmit, signed int entry);