|
@@ -2020,8 +2020,9 @@ static int __wlan_hdd_cfg80211_set_txpower(struct wiphy *wiphy,
|
|
|
{
|
|
|
struct hdd_context *hdd_ctx = (struct hdd_context *) wiphy_priv(wiphy);
|
|
|
mac_handle_t mac_handle;
|
|
|
+ struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(wdev->netdev);
|
|
|
struct qdf_mac_addr bssid = QDF_MAC_ADDR_BCAST_INIT;
|
|
|
- struct qdf_mac_addr selfMac = QDF_MAC_ADDR_BCAST_INIT;
|
|
|
+ struct qdf_mac_addr selfmac;
|
|
|
QDF_STATUS status;
|
|
|
int errno;
|
|
|
int dbm;
|
|
@@ -2041,6 +2042,23 @@ static int __wlan_hdd_cfg80211_set_txpower(struct wiphy *wiphy,
|
|
|
if (errno)
|
|
|
return errno;
|
|
|
|
|
|
+ if (wlan_hdd_validate_vdev_id(adapter->vdev_id))
|
|
|
+ return -EINVAL;
|
|
|
+
|
|
|
+ if (adapter->device_mode == QDF_SAP_MODE ||
|
|
|
+ adapter->device_mode == QDF_P2P_GO_MODE) {
|
|
|
+ qdf_copy_macaddr(&bssid, &adapter->mac_addr);
|
|
|
+ } else {
|
|
|
+ struct hdd_station_ctx *sta_ctx =
|
|
|
+ WLAN_HDD_GET_STATION_CTX_PTR(adapter);
|
|
|
+
|
|
|
+ if (eConnectionState_Associated ==
|
|
|
+ sta_ctx->conn_info.conn_state)
|
|
|
+ qdf_copy_macaddr(&bssid, &sta_ctx->conn_info.bssid);
|
|
|
+ }
|
|
|
+
|
|
|
+ qdf_copy_macaddr(&selfmac, &adapter->mac_addr);
|
|
|
+
|
|
|
mac_handle = hdd_ctx->mac_handle;
|
|
|
|
|
|
dbm = MBM_TO_DBM(mbm);
|
|
@@ -2068,7 +2086,7 @@ static int __wlan_hdd_cfg80211_set_txpower(struct wiphy *wiphy,
|
|
|
/* Fall through */
|
|
|
case NL80211_TX_POWER_LIMITED:
|
|
|
/* Limit TX power by the mBm parameter */
|
|
|
- status = sme_set_max_tx_power(mac_handle, bssid, selfMac, dbm);
|
|
|
+ status = sme_set_max_tx_power(mac_handle, bssid, selfmac, dbm);
|
|
|
if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
hdd_err("Setting maximum tx power failed, %d", status);
|
|
|
return -EIO;
|