summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CORE/HDD/src/wlan_hdd_cfg.c2
-rw-r--r--CORE/HDD/src/wlan_hdd_early_suspend.c2
-rw-r--r--CORE/HDD/src/wlan_hdd_main.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/CORE/HDD/src/wlan_hdd_cfg.c b/CORE/HDD/src/wlan_hdd_cfg.c
index e11709c553c8..a036d049c77b 100644
--- a/CORE/HDD/src/wlan_hdd_cfg.c
+++ b/CORE/HDD/src/wlan_hdd_cfg.c
@@ -4464,7 +4464,7 @@ v_BOOL_t hdd_update_config_dat( hdd_context_t *pHddCtx )
temp = (temp & 0xFFF3) | (pConfig->vhtTxMCS2x2 << 2);
VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO_HIGH,
- "vhtRxMCS2x2 - %x temp - %u enable2x2 %d\n",
+ "vhtRxMCS2x2 - %x temp - %lu enable2x2 %d\n",
pConfig->vhtRxMCS2x2, temp, pConfig->enable2x2);
if(ccmCfgSetInt(pHddCtx->hHal, WNI_CFG_VHT_TX_MCS_MAP,
diff --git a/CORE/HDD/src/wlan_hdd_early_suspend.c b/CORE/HDD/src/wlan_hdd_early_suspend.c
index a53597f58f5a..7bcc30198d7d 100644
--- a/CORE/HDD/src/wlan_hdd_early_suspend.c
+++ b/CORE/HDD/src/wlan_hdd_early_suspend.c
@@ -1707,7 +1707,7 @@ VOS_STATUS hdd_wlan_re_init(void *hif_sc)
adf_ctx = vos_mem_malloc(sizeof(adf_os_device_t));
if (!adf_ctx) {
- hddLog(VOS_TRACE_LEVEL_FATAL,"%s: Failed to allocate adf_ctx", __func__);
+ hddLog(VOS_TRACE_LEVEL_FATAL,"%s: Failed to allocate adf_ctx");
goto err_re_init;
}
vos_mem_zero(adf_ctx, sizeof(adf_os_device_t));
diff --git a/CORE/HDD/src/wlan_hdd_main.c b/CORE/HDD/src/wlan_hdd_main.c
index 74eba4c12ae7..31cd11df4f70 100644
--- a/CORE/HDD/src/wlan_hdd_main.c
+++ b/CORE/HDD/src/wlan_hdd_main.c
@@ -8554,8 +8554,8 @@ int hdd_wlan_startup(struct device *dev, v_VOID_t *hif_sc)
adf_ctx = vos_mem_malloc(sizeof(*adf_ctx));
if (!adf_ctx) {
- hddLog(VOS_TRACE_LEVEL_FATAL,"%s: Failed to allocate adf_ctx", __func__);
- goto err_free_hdd_context;
+ hddLog(VOS_TRACE_LEVEL_FATAL,"%s: Failed to allocate adf_ctx");
+ goto err_free_hdd_context;
}
vos_mem_zero(adf_ctx, sizeof(*adf_ctx));
#ifdef QCA_WIFI_ISOC