summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArunk Khandavalli <akhandav@codeaurora.org>2017-09-13 18:00:40 +0530
committersnandini <snandini@codeaurora.org>2017-09-19 11:38:02 -0700
commite222f6b908b7b9b5b6ccb16acb1069fbab214b2d (patch)
tree1d21c2914892a7cc3c0d23aba6ae1f23be6515d5
parent263c959bedf20bd1b7a353487c8d5b617bbee377 (diff)
qcacld-3.0: Print the macaddress after the LA is reset
Presently in the sta mode locally administered is set and it is not logged with new macaddress. Print the macaddress of the STA once the LA bit is reset. Change-Id: I5ab5c67c622723f32500bc07d815efb02bd834a7 CRs-Fixed: 2069219
-rw-r--r--core/hdd/src/wlan_hdd_main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/hdd/src/wlan_hdd_main.c b/core/hdd/src/wlan_hdd_main.c
index 4c7086b9ec66..f9bacd8a604d 100644
--- a/core/hdd/src/wlan_hdd_main.c
+++ b/core/hdd/src/wlan_hdd_main.c
@@ -3678,6 +3678,8 @@ hdd_adapter_t *hdd_open_adapter(hdd_context_t *hdd_ctx, uint8_t session_type,
case QDF_STA_MODE:
/* Reset locally administered bit if the device mode is STA */
WLAN_HDD_RESET_LOCALLY_ADMINISTERED_BIT(macAddr);
+ hdd_info("locally administered bit reset in sta mode: "
+ MAC_ADDRESS_STR, MAC_ADDR_ARRAY(macAddr));
/* fall through */
case QDF_P2P_CLIENT_MODE:
case QDF_P2P_DEVICE_MODE: