qcacmn: Neighbour peers RSSI update debug logs

Add Neighbour peers RSSI update debug logs.

Change-Id: I9de84c94d82aeae641facaf4fd19de8d644d3ff6
CRs-Fixed: 2927427
This commit is contained in:
Subrat Mishra
2021-04-19 17:25:39 +05:30
کامیت شده توسط Madan Koyyalamudi
والد 9827e7edd8
کامیت fcb71e35cf
4فایلهای تغییر یافته به همراه40 افزوده شده و 6 حذف شده

مشاهده پرونده

@@ -1542,3 +1542,11 @@ wlan_cfg_is_delay_mon_replenish(struct wlan_cfg_dp_soc_ctxt *cfg)
{
return cfg->delay_mon_replenish;
}
void wlan_cfg_dp_soc_ctx_dump(struct wlan_cfg_dp_soc_ctxt *cfg)
{
dp_info("DP CFG SoC ctx: delay_mon_replenish = %d,",
cfg->delay_mon_replenish);
dp_info("reo_dst_ring_size = %d, delayed_replenish_entries = %d",
cfg->reo_dst_ring_size, cfg->delayed_replenish_entries);
}

مشاهده پرونده

@@ -1561,10 +1561,11 @@ void wlan_cfg_set_rxdma1_enable(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx);
* is enabled
* @cfg: soc configuration context
*
* Return: .
* Return: true if enabled, false otherwise.
*/
void
wlan_cfg_set_delay_mon_replenish(struct wlan_cfg_dp_soc_ctxt *cfg, bool val);
bool
wlan_cfg_is_delay_mon_replenish(struct wlan_cfg_dp_soc_ctxt *cfg);
/**
* wlan_cfg_set_delay_mon_replenish() - Set delayed monitor replenish
* @cfg: soc configuration context
@@ -1572,5 +1573,13 @@ wlan_cfg_set_delay_mon_replenish(struct wlan_cfg_dp_soc_ctxt *cfg, bool val);
*
* Return: .
*/
bool
wlan_cfg_is_delay_mon_replenish(struct wlan_cfg_dp_soc_ctxt *cfg);
void
wlan_cfg_set_delay_mon_replenish(struct wlan_cfg_dp_soc_ctxt *cfg, bool val);
/**
* wlan_cfg_dp_soc_ctx_dump() - Dump few DP cfg soc parameters
* @cfg: soc configuration context
*
* Return:
*/
void wlan_cfg_dp_soc_ctx_dump(struct wlan_cfg_dp_soc_ctxt *cfg);