summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRavi Joshi <ravij@qca.qualcomm.com>2016-07-20 12:16:05 -0700
committerAnjaneedevi Kapparapu <akappa@codeaurora.org>2016-07-22 15:23:08 +0530
commit64c0ad55459134fa34a014ff44e80131636d0285 (patch)
treeedd6f250b561ac3944e10a066cd1ff081ff4cc84
parentb732aaf68d0bf4b84551ec30a7664a35226bbb9a (diff)
qcacld-2.0: Fix unexpected log message in transmit path
The log message will show up everytime while handling broadcast/multicast traffic. The log message was designed to show up only for an unexpected unicast traffic request towards a non-existent peer. CRs-Fixed: 962367 Change-Id: I0533494acf6ad520c3258e7f32dbd831508817df
-rw-r--r--CORE/HDD/src/wlan_hdd_tx_rx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/CORE/HDD/src/wlan_hdd_tx_rx.c b/CORE/HDD/src/wlan_hdd_tx_rx.c
index 79eddf3fee46..a635ff2bce19 100644
--- a/CORE/HDD/src/wlan_hdd_tx_rx.c
+++ b/CORE/HDD/src/wlan_hdd_tx_rx.c
@@ -424,8 +424,9 @@ static void hdd_get_transmit_sta_id(hdd_adapter_t *adapter,
"Received MC/BC packet for transmission");
mcbc_addr = true;
} else {
- } hddLog(LOGE,
+ hddLog(LOGE,
"UC frame with invalid destination address");
+ }
}
if (adapter->device_mode == WLAN_HDD_IBSS) {