|
@@ -283,10 +283,7 @@ static void wlan_p2p_event_callback(void *user_data,
|
|
|
}
|
|
|
|
|
|
pdev = wlan_vdev_get_pdev(vdev);
|
|
|
- chan = ieee80211_get_channel(wdev->wiphy,
|
|
|
- wlan_reg_legacy_chan_to_freq(
|
|
|
- pdev,
|
|
|
- p2p_event->chan));
|
|
|
+ chan = ieee80211_get_channel(wdev->wiphy, p2p_event->chan);
|
|
|
if (!chan) {
|
|
|
osif_err("channel conversion failed");
|
|
|
goto fail;
|
|
@@ -367,7 +364,7 @@ int wlan_cfg80211_roc(struct wlan_objmgr_vdev *vdev,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- roc_req.chan = (uint32_t)wlan_reg_freq_to_chan(pdev, chan->center_freq);
|
|
|
+ roc_req.chan = chan->center_freq;
|
|
|
roc_req.duration = duration;
|
|
|
roc_req.vdev_id = (uint32_t)vdev_id;
|
|
|
|
|
@@ -416,7 +413,7 @@ int wlan_cfg80211_mgmt_tx(struct wlan_objmgr_vdev *vdev,
|
|
|
struct p2p_mgmt_tx mgmt_tx = {0};
|
|
|
struct wlan_objmgr_psoc *psoc;
|
|
|
uint8_t vdev_id;
|
|
|
- uint32_t channel = 0;
|
|
|
+ qdf_freq_t chan_freq = 0;
|
|
|
struct wlan_objmgr_pdev *pdev = NULL;
|
|
|
if (!vdev) {
|
|
|
osif_err("invalid vdev object");
|
|
@@ -425,8 +422,7 @@ int wlan_cfg80211_mgmt_tx(struct wlan_objmgr_vdev *vdev,
|
|
|
|
|
|
pdev = wlan_vdev_get_pdev(vdev);
|
|
|
if (chan)
|
|
|
- channel = (uint32_t)wlan_reg_freq_to_chan(pdev,
|
|
|
- chan->center_freq);
|
|
|
+ chan_freq = chan->center_freq;
|
|
|
else
|
|
|
osif_debug("NULL chan, set channel to 0");
|
|
|
|
|
@@ -445,10 +441,7 @@ int wlan_cfg80211_mgmt_tx(struct wlan_objmgr_vdev *vdev,
|
|
|
int ret;
|
|
|
bool ok;
|
|
|
|
|
|
- ret = policy_mgr_is_chan_ok_for_dnbs(
|
|
|
- psoc, wlan_reg_legacy_chan_to_freq(pdev,
|
|
|
- channel),
|
|
|
- &ok);
|
|
|
+ ret = policy_mgr_is_chan_ok_for_dnbs(psoc, chan_freq, &ok);
|
|
|
if (QDF_IS_STATUS_ERROR(ret)) {
|
|
|
osif_err("policy_mgr_is_chan_ok_for_dnbs():ret:%d",
|
|
|
ret);
|
|
@@ -456,13 +449,13 @@ int wlan_cfg80211_mgmt_tx(struct wlan_objmgr_vdev *vdev,
|
|
|
}
|
|
|
if (!ok) {
|
|
|
osif_err("Rejecting mgmt_tx for channel:%d as DNSC is set",
|
|
|
- channel);
|
|
|
+ chan_freq);
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
mgmt_tx.vdev_id = (uint32_t)vdev_id;
|
|
|
- mgmt_tx.chan = channel;
|
|
|
+ mgmt_tx.chan = chan_freq;
|
|
|
mgmt_tx.wait = wait;
|
|
|
mgmt_tx.len = len;
|
|
|
mgmt_tx.no_cck = (uint32_t)no_cck;
|