mirror of
https://github.com/torvalds/linux.git
synced 2024-12-29 14:21:47 +00:00
staging: rtl8188eu: rename camelcase bAcceptAddbaReq
There is such a field both in struct mlme_ext_info and in struct registry_priv. Rename both. Also fix checkpatch issue in the lines touched: WARNING: line over 80 characters Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Cc: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f0f17bed9a
commit
d6c6ad9611
@ -3739,7 +3739,7 @@ static unsigned int OnAction_back(struct adapter *padapter,
|
||||
memcpy(&(pmlmeinfo->ADDBA_req), &(frame_body[2]), sizeof(struct ADDBA_request));
|
||||
process_addba_req(padapter, (u8 *)&(pmlmeinfo->ADDBA_req), addr);
|
||||
|
||||
if (pmlmeinfo->bAcceptAddbaReq)
|
||||
if (pmlmeinfo->accept_addba_req)
|
||||
issue_action_BA(padapter, addr, RTW_WLAN_ACTION_ADDBA_RESP, 0);
|
||||
else
|
||||
issue_action_BA(padapter, addr, RTW_WLAN_ACTION_ADDBA_RESP, 37);/* reject ADDBA Req */
|
||||
@ -4149,7 +4149,7 @@ int init_mlme_ext_priv(struct adapter *padapter)
|
||||
pmlmeext->padapter = padapter;
|
||||
|
||||
init_mlme_ext_priv_value(padapter);
|
||||
pmlmeinfo->bAcceptAddbaReq = pregistrypriv->bAcceptAddbaReq;
|
||||
pmlmeinfo->accept_addba_req = pregistrypriv->accept_addba_req;
|
||||
|
||||
init_mlme_ext_timer(padapter);
|
||||
|
||||
|
@ -1579,7 +1579,8 @@ void process_addba_req(struct adapter *padapter, u8 *paddba_req, u8 *addr)
|
||||
tid = (param>>2)&0x0f;
|
||||
preorder_ctrl = &psta->recvreorder_ctrl[tid];
|
||||
preorder_ctrl->indicate_seq = 0xffff;
|
||||
preorder_ctrl->enable = (pmlmeinfo->bAcceptAddbaReq) ? true : false;
|
||||
preorder_ctrl->enable = (pmlmeinfo->accept_addba_req) ? true
|
||||
: false;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -110,7 +110,7 @@ struct registry_priv {
|
||||
u8 wifi_spec;/* !turbo_mode */
|
||||
|
||||
u8 channel_plan;
|
||||
bool bAcceptAddbaReq; /* true = accept AP's Add BA req */
|
||||
bool accept_addba_req; /* true = accept AP's Add BA req */
|
||||
|
||||
u8 antdiv_cfg;
|
||||
u8 antdiv_type;
|
||||
|
@ -348,7 +348,7 @@ struct mlme_ext_info {
|
||||
u8 candidate_tid_bitmap;
|
||||
u8 dialogToken;
|
||||
/* Accept ADDBA Request */
|
||||
bool bAcceptAddbaReq;
|
||||
bool accept_addba_req;
|
||||
u8 bwmode_updated;
|
||||
u8 hidden_ssid_mode;
|
||||
|
||||
|
@ -591,7 +591,7 @@ static void loadparam(struct adapter *padapter, struct net_device *pnetdev)
|
||||
registry_par->low_power = (u8)rtw_low_power;
|
||||
registry_par->wifi_spec = (u8)rtw_wifi_spec;
|
||||
registry_par->channel_plan = (u8)rtw_channel_plan;
|
||||
registry_par->bAcceptAddbaReq = true;
|
||||
registry_par->accept_addba_req = true;
|
||||
registry_par->antdiv_cfg = (u8)rtw_antdiv_cfg;
|
||||
registry_par->antdiv_type = (u8)rtw_antdiv_type;
|
||||
registry_par->hwpdn_mode = (u8)rtw_hwpdn_mode;
|
||||
|
Loading…
Reference in New Issue
Block a user