mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 09:09:55 -04:00
staging: r8188eu: use mgmt to set the timeout
Use the mgmt structure in issue_action_BA to set the timeout in the outgoing frame. Signed-off-by: Martin Kaiser <martin@kaiser.cx> Link: https://lore.kernel.org/r/20220524090029.242584-10-martin@kaiser.cx Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
c257851fe7
commit
34411b1920
@@ -5368,7 +5368,6 @@ void issue_action_BA(struct adapter *padapter, unsigned char *raddr, unsigned ch
|
||||
u16 start_seq;
|
||||
u16 BA_para_set;
|
||||
u16 reason_code;
|
||||
u16 BA_timeout_value;
|
||||
__le16 le_tmp;
|
||||
u16 BA_starting_seqctrl = 0;
|
||||
struct xmit_frame *pmgntframe;
|
||||
@@ -5424,9 +5423,8 @@ void issue_action_BA(struct adapter *padapter, unsigned char *raddr, unsigned ch
|
||||
le_tmp = cpu_to_le16(BA_para_set);
|
||||
pframe = rtw_set_fixed_ie(pframe, 2, (unsigned char *)&le_tmp, &pattrib->pktlen);
|
||||
|
||||
BA_timeout_value = 5000;/* 5ms */
|
||||
le_tmp = cpu_to_le16(BA_timeout_value);
|
||||
pframe = rtw_set_fixed_ie(pframe, 2, (unsigned char *)&le_tmp, &pattrib->pktlen);
|
||||
mgmt->u.action.u.addba_req.timeout = cpu_to_le16(5000); /* 5 ms */
|
||||
pattrib->pktlen += 2;
|
||||
|
||||
psta = rtw_get_stainfo(pstapriv, raddr);
|
||||
if (psta) {
|
||||
|
||||
Reference in New Issue
Block a user