diff options
| author | Ravi Joshi <ravij@codeaurora.org> | 2016-08-08 19:02:55 -0700 |
|---|---|---|
| committer | Vishwajith Upendra <vishwaji@codeaurora.org> | 2016-08-17 11:21:47 -0700 |
| commit | ddce59aeef0f46e7af211db9c2105c70fbd57912 (patch) | |
| tree | f1a90564d3ece22d0e1c41e20780dc814c2ac460 | |
| parent | 0de344f3b5154266bd8bab40242968521fd6a09c (diff) | |
qcacld-3.0: Fix host debug message flooding for unicast traffic
The debug message was added to identify a case of trying to
send a unicast traffic to an unknown peer. However, as per the
implementation, the debug print becomes always true while
sending unicast traffic in station or p2p client mode.
Integration from qcacld-2.0 to qcacld-3.0.
CRs-Fixed: 1051920
Change-Id: I849317c699ffca1e057c4e59747e08535baca381
| -rw-r--r-- | core/hdd/src/wlan_hdd_tx_rx.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/hdd/src/wlan_hdd_tx_rx.c b/core/hdd/src/wlan_hdd_tx_rx.c index 03d259a21a3e..6c5ef90b2553 100644 --- a/core/hdd/src/wlan_hdd_tx_rx.c +++ b/core/hdd/src/wlan_hdd_tx_rx.c @@ -320,8 +320,6 @@ static void hdd_get_transmit_sta_id(hdd_adapter_t *adapter, qdf_is_macaddr_group(dst_addr)) { hdd_info("Received MC/BC packet for transmission"); mcbc_addr = true; - } else { - hdd_err("UC frame with invalid destination address"); } } |
