qcacld-3.0: Refine gFwDebugModuleLoglevel configurations

Refine gFwDebugModuleLoglevel configurations based on converged cfg
component. Remove related legacy codes.

Change-Id: I5a1099872163bdcf0fc2e08478c4b608529db736
CRs-Fixed: 2355599
This commit is contained in:
lifeng
2018-11-24 01:53:56 +08:00
کامیت شده توسط nshrivas
والد 7743eb9e03
کامیت e47878b426
5فایلهای تغییر یافته به همراه87 افزوده شده و 0 حذف شده

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

@@ -428,6 +428,25 @@ QDF_STATUS ucfg_fwol_get_enable_fw_log_type(struct wlan_objmgr_psoc *psoc,
return QDF_STATUS_SUCCESS;
}
QDF_STATUS ucfg_fwol_get_enable_fw_module_log_level(
struct wlan_objmgr_psoc *psoc,
uint8_t **enable_fw_module_log_level,
uint8_t *enable_fw_module_log_level_num)
{
struct wlan_fwol_psoc_obj *fwol_obj;
fwol_obj = fwol_get_psoc_obj(psoc);
if (!fwol_obj) {
fwol_err("Failed to get FWOL obj");
return QDF_STATUS_E_FAILURE;
}
*enable_fw_module_log_level = fwol_obj->cfg.enable_fw_module_log_level;
*enable_fw_module_log_level_num =
fwol_obj->cfg.enable_fw_module_log_level_num;
return QDF_STATUS_SUCCESS;
}
#ifdef FEATURE_WLAN_RA_FILTERING
QDF_STATUS ucfg_fwol_set_is_rate_limit_enabled(struct wlan_objmgr_psoc *psoc,
bool is_rate_limit_enabled)