Home
last modified time | relevance | path

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

/linux/drivers/net/wireless/marvell/mwifiex/
H A D11h.c137 struct mwifiex_radar_params *radar_params = (void *)data_buf; in mwifiex_cmd_issue_chan_report_request() local
145 cr_req->chan_desc.chan_num = radar_params->chandef->chan->hw_value; in mwifiex_cmd_issue_chan_report_request()
146 cr_req->chan_desc.chan_width = radar_params->chandef->width; in mwifiex_cmd_issue_chan_report_request()
147 cr_req->msec_dwell_time = cpu_to_le32(radar_params->cac_time_ms); in mwifiex_cmd_issue_chan_report_request()
149 if (radar_params->cac_time_ms) in mwifiex_cmd_issue_chan_report_request()
152 radar_params->chandef->chan->hw_value); in mwifiex_cmd_issue_chan_report_request()
162 struct mwifiex_radar_params radar_params; in mwifiex_stop_radar_detection() local
164 memset(&radar_params, 0, sizeof(struct mwifiex_radar_params)); in mwifiex_stop_radar_detection()
165 radar_params.chandef = chandef; in mwifiex_stop_radar_detection()
166 radar_params.cac_time_ms = 0; in mwifiex_stop_radar_detection()
[all …]
H A Dcfg80211.c4209 struct mwifiex_radar_params radar_params; in mwifiex_cfg80211_start_radar_detection() local
4228 memset(&radar_params, 0, sizeof(struct mwifiex_radar_params)); in mwifiex_cfg80211_start_radar_detection()
4229 radar_params.chandef = chandef; in mwifiex_cfg80211_start_radar_detection()
4230 radar_params.cac_time_ms = cac_time_ms; in mwifiex_cfg80211_start_radar_detection()
4235 HostCmd_ACT_GEN_SET, 0, &radar_params, true)) in mwifiex_cfg80211_start_radar_detection()
/linux/drivers/net/wireless/nxp/nxpwifi/
H A D11h.c135 struct nxpwifi_radar_params *radar_params = (void *)data_buf; in nxpwifi_cmd_issue_chan_report_request() local
144 radar_params->chandef); in nxpwifi_cmd_issue_chan_report_request()
145 cr_req->chan_desc.chan_num = radar_params->chandef->chan->hw_value; in nxpwifi_cmd_issue_chan_report_request()
146 cr_req->msec_dwell_time = cpu_to_le32(radar_params->cac_time_ms); in nxpwifi_cmd_issue_chan_report_request()
149 if (radar_params->cac_time_ms) { in nxpwifi_cmd_issue_chan_report_request()
160 radar_params->chandef->chan->hw_value); in nxpwifi_cmd_issue_chan_report_request()
173 struct nxpwifi_radar_params radar_params; in nxpwifi_stop_radar_detection() local
175 memset(&radar_params, 0, sizeof(struct nxpwifi_radar_params)); in nxpwifi_stop_radar_detection()
176 radar_params.chandef = chandef; in nxpwifi_stop_radar_detection()
177 radar_params.cac_time_ms = 0; in nxpwifi_stop_radar_detection()
[all …]
H A Dcmdevt.h121 int nxpwifi_chan_report_request(struct nxpwifi_private *priv, void *radar_params);
H A Dcmdevt.c1306 int nxpwifi_chan_report_request(struct nxpwifi_private *priv, void *radar_params) in nxpwifi_chan_report_request() argument
1309 radar_params, true); in nxpwifi_chan_report_request()
H A Dcfg80211.c3274 struct nxpwifi_radar_params radar_params; in nxpwifi_cfg80211_start_radar_detection() local
3294 memset(&radar_params, 0, sizeof(struct nxpwifi_radar_params)); in nxpwifi_cfg80211_start_radar_detection()
3295 radar_params.chandef = chandef; in nxpwifi_cfg80211_start_radar_detection()
3296 radar_params.cac_time_ms = cac_time_ms; in nxpwifi_cfg80211_start_radar_detection()
3300 ret = nxpwifi_chan_report_request(priv, &radar_params); in nxpwifi_cfg80211_start_radar_detection()