Home
last modified time | relevance | path

Searched refs:ph2c (Results 1 – 4 of 4) sorted by relevance

/drivers/staging/rtl8712/
Drtl871x_cmd.c222 struct cmd_obj *ph2c; in r8712_sitesurvey_cmd() local
227 ph2c = kmalloc(sizeof(*ph2c), GFP_ATOMIC); in r8712_sitesurvey_cmd()
228 if (!ph2c) in r8712_sitesurvey_cmd()
232 kfree(ph2c); in r8712_sitesurvey_cmd()
235 init_h2fwcmd_w_parm_no_rsp(ph2c, psurveyPara, in r8712_sitesurvey_cmd()
246 r8712_enqueue_cmd(pcmdpriv, ph2c); in r8712_sitesurvey_cmd()
256 struct cmd_obj *ph2c; in r8712_setdatarate_cmd() local
260 ph2c = kmalloc(sizeof(*ph2c), GFP_ATOMIC); in r8712_setdatarate_cmd()
261 if (!ph2c) in r8712_setdatarate_cmd()
265 kfree(ph2c); in r8712_setdatarate_cmd()
[all …]
/drivers/staging/rtl8188eu/core/
Drtw_cmd.c252 struct cmd_obj *ph2c; in rtw_sitesurvey_cmd() local
260 ph2c = kzalloc(sizeof(struct cmd_obj), GFP_ATOMIC); in rtw_sitesurvey_cmd()
261 if (!ph2c) in rtw_sitesurvey_cmd()
266 kfree(ph2c); in rtw_sitesurvey_cmd()
274 init_h2fwcmd_w_parm_no_rsp(ph2c, psurveyPara, _SiteSurvey_CMD_); in rtw_sitesurvey_cmd()
305 res = rtw_enqueue_cmd(pcmdpriv, ph2c); in rtw_sitesurvey_cmd()
548 struct cmd_obj *ph2c; in rtw_setopmode_cmd() local
553 ph2c = kzalloc(sizeof(struct cmd_obj), GFP_KERNEL); in rtw_setopmode_cmd()
555 if (!ph2c || !psetop) { in rtw_setopmode_cmd()
556 kfree(ph2c); in rtw_setopmode_cmd()
[all …]
Drtw_mlme_ext.c4824 struct cmd_obj *ph2c; in survey_timer_hdl() local
4842 ph2c = kzalloc(sizeof(struct cmd_obj), GFP_ATOMIC); in survey_timer_hdl()
4843 if (!ph2c) in survey_timer_hdl()
4848 kfree(ph2c); in survey_timer_hdl()
4852 init_h2fwcmd_w_parm_no_rsp(ph2c, psurveyPara, _SiteSurvey_CMD_); in survey_timer_hdl()
4853 rtw_enqueue_cmd(pcmdpriv, ph2c); in survey_timer_hdl()
5400 struct cmd_obj *ph2c; in set_tx_beacon_cmd() local
5409 ph2c = kzalloc(sizeof(struct cmd_obj), GFP_KERNEL); in set_tx_beacon_cmd()
5410 if (!ph2c) { in set_tx_beacon_cmd()
5418 kfree(ph2c); in set_tx_beacon_cmd()
[all …]
/drivers/staging/rtl8188eu/os_dep/
Dioctl_linux.c2109 struct cmd_obj *ph2c; in set_pairwise_key() local
2114 ph2c = kzalloc(sizeof(struct cmd_obj), GFP_KERNEL); in set_pairwise_key()
2115 if (!ph2c) { in set_pairwise_key()
2122 kfree(ph2c); in set_pairwise_key()
2127 init_h2fwcmd_w_parm_no_rsp(ph2c, psetstakey_para, _SetStaKey_CMD_); in set_pairwise_key()
2135 res = rtw_enqueue_cmd(pcmdpriv, ph2c); in set_pairwise_key()