summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSrinivas Girigowda <sgirigow@codeaurora.org>2017-03-19 22:12:15 -0700
committerSandeep Puligilla <spuligil@codeaurora.org>2017-03-23 02:14:50 -0700
commitee4d8908caf2f433d66778c87b96abc9301f5b96 (patch)
tree54c92efcf15b7b08d33553f05fe4ca85dab3ca71
parent8c3fc1bcf60ce74530920c4dbae4d5c8b74a64fe (diff)
qcacld-3.0: Replace dot11f_log() with pe_* log levels in utils_parser.c
Replace dot11f_log() with pe_* appropriate log levels in utils_parser.c. Change-Id: Ie5d39d61690f58a8debdc62abc68f06ce53ab07a CRs-Fixed: 2020798
-rw-r--r--core/mac/src/sys/legacy/src/utils/src/utils_parser.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/core/mac/src/sys/legacy/src/utils/src/utils_parser.c b/core/mac/src/sys/legacy/src/utils/src/utils_parser.c
index d8c4c5a1e8b5..5c0bb3d6dd3d 100644
--- a/core/mac/src/sys/legacy/src/utils/src/utils_parser.c
+++ b/core/mac/src/sys/legacy/src/utils/src/utils_parser.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2011-2016 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2011-2017 The Linux Foundation. All rights reserved.
*
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
*
@@ -95,8 +95,7 @@ tSirRetStatus convert_wpa(tpAniSirGlobal pMac,
uint32_t status, written = 0, nbuffer = 257;
status = dot11f_pack_ie_wpa(pMac, pNew, buffer, nbuffer, &written);
if (DOT11F_FAILED(status)) {
- dot11f_log(pMac, LOG2, FL("Failed to re-pack the WPA IE (0x%0x"
- "8).\n"), status);
+ pe_err("Failed to re-pack the WPA IE (0x%0x8)", status);
return eSIR_FAILURE;
}
@@ -201,8 +200,7 @@ tSirRetStatus convert_rsn(tpAniSirGlobal pMac,
uint32_t status, written = 0, nbuffer = 257;
status = dot11f_pack_ie_rsn(pMac, pNew, buffer, nbuffer, &written);
if (DOT11F_FAILED(status)) {
- dot11f_log(pMac, LOG2, FL("Failed to re-pack the RSN IE (0x%0x"
- "8).\n"), status);
+ pe_err("Failed to re-pack the RSN IE (0x%0x8)", status);
return eSIR_FAILURE;
}