|
@@ -90,6 +90,7 @@
|
|
|
#include "qdf_types.h"
|
|
|
#include <linux/cpuidle.h>
|
|
|
#include <cdp_txrx_ctrl.h>
|
|
|
+#include <wlan_cp_stats_mc_ucfg_api.h>
|
|
|
|
|
|
/* Preprocessor definitions and constants */
|
|
|
#ifdef QCA_WIFI_EMULATION
|
|
@@ -3167,6 +3168,7 @@ static int __wlan_hdd_cfg80211_get_txpower(struct wiphy *wiphy,
|
|
|
struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(ndev);
|
|
|
int status;
|
|
|
static bool is_rate_limited;
|
|
|
+ struct wlan_objmgr_vdev *vdev;
|
|
|
|
|
|
hdd_enter_dev(ndev);
|
|
|
|
|
@@ -3215,7 +3217,13 @@ static int __wlan_hdd_cfg80211_get_txpower(struct wiphy *wiphy,
|
|
|
is_rate_limited) {
|
|
|
hdd_debug("Modules not enabled/rate limited, use cached stats");
|
|
|
/* Send cached data to upperlayer*/
|
|
|
- *dbm = adapter->hdd_stats.class_a_stat.max_pwr;
|
|
|
+ vdev = hdd_objmgr_get_vdev_by_user(adapter, WLAN_OSIF_POWER_ID);
|
|
|
+ if (!vdev) {
|
|
|
+ hdd_err("vdev is NULL");
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+ ucfg_mc_cp_stats_get_tx_power(vdev, dbm);
|
|
|
+ hdd_objmgr_put_vdev_by_user(vdev, WLAN_OSIF_POWER_ID);
|
|
|
return 0;
|
|
|
}
|
|
|
|