staging: rtl8188eu: rtw_cmd.h: Remove struct Tx_Beacon_param
struct Tx_Beacon_param has only one member. Signed-off-by: navin patidar <navin.patidar@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3c98d810de
commit
acc10c67a3
3 changed files with 7 additions and 11 deletions
|
@ -5416,7 +5416,7 @@ u8 add_ba_hdl(struct adapter *padapter, unsigned char *pbuf)
|
||||||
u8 set_tx_beacon_cmd(struct adapter *padapter)
|
u8 set_tx_beacon_cmd(struct adapter *padapter)
|
||||||
{
|
{
|
||||||
struct cmd_obj *ph2c;
|
struct cmd_obj *ph2c;
|
||||||
struct Tx_Beacon_param *ptxBeacon_parm;
|
struct wlan_bssid_ex *ptxBeacon_parm;
|
||||||
struct cmd_priv *pcmdpriv = &(padapter->cmdpriv);
|
struct cmd_priv *pcmdpriv = &(padapter->cmdpriv);
|
||||||
struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv;
|
struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv;
|
||||||
struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info);
|
struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info);
|
||||||
|
@ -5430,19 +5430,19 @@ u8 set_tx_beacon_cmd(struct adapter *padapter)
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
ptxBeacon_parm = kzalloc(sizeof(struct Tx_Beacon_param), GFP_KERNEL);
|
ptxBeacon_parm = kzalloc(sizeof(struct wlan_bssid_ex), GFP_KERNEL);
|
||||||
if (ptxBeacon_parm == NULL) {
|
if (ptxBeacon_parm == NULL) {
|
||||||
kfree(ph2c);
|
kfree(ph2c);
|
||||||
res = _FAIL;
|
res = _FAIL;
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
memcpy(&(ptxBeacon_parm->network), &(pmlmeinfo->network), sizeof(struct wlan_bssid_ex));
|
memcpy(ptxBeacon_parm, &(pmlmeinfo->network), sizeof(struct wlan_bssid_ex));
|
||||||
|
|
||||||
len_diff = update_hidden_ssid(ptxBeacon_parm->network.IEs+_BEACON_IE_OFFSET_,
|
len_diff = update_hidden_ssid(ptxBeacon_parm->IEs+_BEACON_IE_OFFSET_,
|
||||||
ptxBeacon_parm->network.IELength-_BEACON_IE_OFFSET_,
|
ptxBeacon_parm->IELength-_BEACON_IE_OFFSET_,
|
||||||
pmlmeinfo->hidden_ssid_mode);
|
pmlmeinfo->hidden_ssid_mode);
|
||||||
ptxBeacon_parm->network.IELength += len_diff;
|
ptxBeacon_parm->IELength += len_diff;
|
||||||
|
|
||||||
init_h2fwcmd_w_parm_no_rsp(ph2c, ptxBeacon_parm, GEN_CMD_CODE(_TX_Beacon));
|
init_h2fwcmd_w_parm_no_rsp(ph2c, ptxBeacon_parm, GEN_CMD_CODE(_TX_Beacon));
|
||||||
|
|
||||||
|
|
|
@ -353,10 +353,6 @@ struct getphy_parm {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct Tx_Beacon_param {
|
|
||||||
struct wlan_bssid_ex network;
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Notes: This command is used for H2C/C2H loopback testing
|
Notes: This command is used for H2C/C2H loopback testing
|
||||||
|
|
||||||
|
|
|
@ -764,7 +764,7 @@ static struct cmd_hdl wlancmds[] = {
|
||||||
GEN_MLME_EXT_HANDLER(0, NULL)
|
GEN_MLME_EXT_HANDLER(0, NULL)
|
||||||
GEN_MLME_EXT_HANDLER(0, NULL)
|
GEN_MLME_EXT_HANDLER(0, NULL)
|
||||||
GEN_MLME_EXT_HANDLER(0, NULL)
|
GEN_MLME_EXT_HANDLER(0, NULL)
|
||||||
GEN_MLME_EXT_HANDLER(sizeof(struct Tx_Beacon_param),
|
GEN_MLME_EXT_HANDLER(sizeof(struct wlan_bssid_ex),
|
||||||
tx_beacon_hdl) /*55*/
|
tx_beacon_hdl) /*55*/
|
||||||
|
|
||||||
GEN_MLME_EXT_HANDLER(0, mlme_evt_hdl) /*56*/
|
GEN_MLME_EXT_HANDLER(0, mlme_evt_hdl) /*56*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue