|
@@ -1,6 +1,6 @@
|
|
|
/*
|
|
|
* Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
|
|
|
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
+ * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
*
|
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
@@ -3334,7 +3334,6 @@ static int __wlan_hdd_cfg80211_get_txpower(struct wiphy *wiphy,
|
|
|
hdd_ctx->config->nb_commands_interval);
|
|
|
if (hdd_ctx->driver_status != DRIVER_MODULES_ENABLED ||
|
|
|
is_rate_limited) {
|
|
|
- hdd_debug("Modules not enabled/rate limited, use cached stats");
|
|
|
/* Send cached data to upperlayer*/
|
|
|
vdev = hdd_objmgr_get_vdev_by_user(adapter, WLAN_OSIF_POWER_ID);
|
|
|
if (!vdev) {
|
|
@@ -3343,6 +3342,8 @@ static int __wlan_hdd_cfg80211_get_txpower(struct wiphy *wiphy,
|
|
|
}
|
|
|
ucfg_mc_cp_stats_get_tx_power(vdev, dbm);
|
|
|
hdd_objmgr_put_vdev_by_user(vdev, WLAN_OSIF_POWER_ID);
|
|
|
+ hdd_debug("Modules not enabled/rate limited, cached tx power = %d",
|
|
|
+ *dbm);
|
|
|
return 0;
|
|
|
}
|
|
|
|