|
@@ -51,7 +51,7 @@ static void tgt_mc_cp_stats_extract_tx_power(struct wlan_objmgr_psoc *psoc,
|
|
|
struct pdev_cp_stats *pdev_cp_stats_priv;
|
|
|
|
|
|
if (!ev->pdev_stats) {
|
|
|
- cp_stats_err("no pdev stats");
|
|
|
+ cp_stats_debug("no pdev stats");
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -118,8 +118,8 @@ static void peer_rssi_iterator(struct wlan_objmgr_pdev *pdev,
|
|
|
struct peer_extd_stats *peer_extd_mc_stats;
|
|
|
|
|
|
if (WLAN_PEER_SELF == wlan_peer_get_peer_type(peer)) {
|
|
|
- cp_stats_err("ignore self peer: %pM",
|
|
|
- wlan_peer_get_macaddr(peer));
|
|
|
+ cp_stats_debug("ignore self peer: %pM",
|
|
|
+ wlan_peer_get_macaddr(peer));
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -485,7 +485,7 @@ static void tgt_mc_cp_stats_extract_peer_stats(struct wlan_objmgr_psoc *psoc,
|
|
|
extd2_stats:
|
|
|
|
|
|
if (!ev->peer_adv_stats) {
|
|
|
- cp_stats_err("no peer_extd2 stats");
|
|
|
+ cp_stats_debug("no peer_extd2 stats");
|
|
|
goto complete;
|
|
|
}
|
|
|
selected = ev->num_peer_adv_stats;
|
|
@@ -569,7 +569,7 @@ static void tgt_mc_cp_stats_extract_vdev_summary_stats(
|
|
|
struct vdev_cp_stats *vdev_cp_stats_priv;
|
|
|
|
|
|
if (!ev->vdev_summary_stats) {
|
|
|
- cp_stats_err("no summary stats");
|
|
|
+ cp_stats_debug("no summary stats");
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -587,7 +587,7 @@ static void tgt_mc_cp_stats_extract_vdev_summary_stats(
|
|
|
}
|
|
|
|
|
|
if (i == ev->num_summary_stats) {
|
|
|
- cp_stats_err("vdev_id %d not found", last_req.vdev_id);
|
|
|
+ cp_stats_debug("vdev_id %d not found", last_req.vdev_id);
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -647,7 +647,7 @@ static void tgt_mc_cp_stats_extract_vdev_chain_rssi_stats(
|
|
|
struct vdev_cp_stats *vdev_cp_stats_priv;
|
|
|
|
|
|
if (!ev->vdev_chain_rssi) {
|
|
|
- cp_stats_err("no vdev chain rssi stats");
|
|
|
+ cp_stats_debug("no vdev chain rssi stats");
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -665,7 +665,7 @@ static void tgt_mc_cp_stats_extract_vdev_chain_rssi_stats(
|
|
|
}
|
|
|
|
|
|
if (i == ev->num_chain_rssi_stats) {
|
|
|
- cp_stats_err("vdev_id %d not found", last_req.vdev_id);
|
|
|
+ cp_stats_debug("vdev_id %d not found", last_req.vdev_id);
|
|
|
return;
|
|
|
}
|
|
|
|