From ee4d8908caf2f433d66778c87b96abc9301f5b96 Mon Sep 17 00:00:00 2001 From: Srinivas Girigowda Date: Sun, 19 Mar 2017 22:12:15 -0700 Subject: 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 --- core/mac/src/sys/legacy/src/utils/src/utils_parser.c | 8 +++----- 1 file 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; } -- cgit v1.2.3