summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSrinivas Girigowda <sgirigow@codeaurora.org>2017-03-26 22:15:09 -0700
committerSandeep Puligilla <spuligil@codeaurora.org>2017-03-31 16:00:59 -0700
commit34c2bba281dd4157d06815b0db63a9857f35e466 (patch)
tree476a7831cc8d85aa4ee7f1d29a65dc6a749acd12
parentc9869c503d4ec6dabd178bda5ea51d637c11a821 (diff)
qcacld-3.0: Replace lim_log() with pe_* log levels in lim_types.h
Replace lim_log() with pe_* appropriate log levels in lim_types.h Change-Id: If9995b020cc6b71a98defc5f1d7a94c524529c60 CRs-Fixed: 1093093
-rw-r--r--core/mac/src/pe/lim/lim_types.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/mac/src/pe/lim/lim_types.h b/core/mac/src/pe/lim/lim_types.h
index e7ee24636475..d88389400add 100644
--- a/core/mac/src/pe/lim/lim_types.h
+++ b/core/mac/src/pe/lim/lim_types.h
@@ -670,7 +670,7 @@ lim_post_sme_message(tpAniSirGlobal pMac, uint32_t msgType, uint32_t *pMsgBuf)
tSirMsgQ msg;
if (pMsgBuf == NULL) {
- lim_log(pMac, LOGE, FL("Buffer is Pointing to NULL"));
+ pe_err("Buffer is Pointing to NULL");
return;
}
@@ -714,10 +714,10 @@ lim_post_sme_message(tpAniSirGlobal pMac, uint32_t msgType, uint32_t *pMsgBuf)
static inline void
lim_post_mlm_message(tpAniSirGlobal pMac, uint32_t msgType, uint32_t *pMsgBuf)
{
-
tSirMsgQ msg;
+
if (pMsgBuf == NULL) {
- lim_log(pMac, LOGE, FL("Buffer is Pointing to NULL"));
+ pe_err("Buffer is Pointing to NULL");
return;
}
msg.type = (uint16_t) msgType;