qcacld-3.0: Reduce hdd/ipa info logs

A number of HDD and IPA logs are generally unnecessary and have been
identified as contributing to log spam. Reduce these log messages to the
debug level.

Change-Id: I2f92bb4caec5adc65fdad0146298aa5f88b43def
CRs-Fixed: 2288430
This commit is contained in:
Dustin Brown
2018-07-31 13:50:17 -07:00
committed by nshrivas
parent bc7d718715
commit 7e761c71eb
6 changed files with 31 additions and 32 deletions

View File

@@ -370,11 +370,11 @@ static inline QDF_STATUS wlan_ipa_wdi_init(struct wlan_ipa_priv *ipa_ctx)
}
if (QDF_IPA_WDI_INIT_OUT_PARAMS_IS_UC_READY(&out)) {
ipa_info("IPA uC READY");
ipa_debug("IPA uC READY");
ipa_ctx->uc_loaded = true;
ipa_ctx->is_smmu_enabled =
QDF_IPA_WDI_INIT_OUT_PARAMS_IS_SMMU_ENABLED(&out);
ipa_info("is_smmu_enabled=%d", ipa_ctx->is_smmu_enabled);
ipa_debug("is_smmu_enabled=%d", ipa_ctx->is_smmu_enabled);
} else {
return QDF_STATUS_E_BUSY;
}

View File

@@ -71,7 +71,7 @@ ipa_pdev_obj_create_notification(struct wlan_objmgr_pdev *pdev,
QDF_STATUS status;
struct wlan_ipa_priv *ipa_obj;
ipa_info("ipa pdev created");
ipa_debug("ipa pdev created");
if (!ipa_config_is_enabled()) {
ipa_info("IPA is disabled");
@@ -110,7 +110,7 @@ ipa_pdev_obj_create_notification(struct wlan_objmgr_pdev *pdev,
target_if_ipa_register_tx_ops(&ipa_obj->ipa_tx_op);
ipa_info("ipa pdev attached");
ipa_debug("ipa pdev attached");
return status;
}