forked from Minki/linux
mwifiex: suppress "Rx of mgmt packet failed" message
Block ACK action frames are dropped in driver. This error is expected in this case. Let's lower the priority of this message. Signed-off-by: Amitkumar Karwar <akarwar@marvell.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
abffd274a2
commit
bd642acf32
@ -215,7 +215,7 @@ int mwifiex_process_sta_rx_packet(struct mwifiex_private *priv,
|
||||
if (rx_pkt_type == PKT_TYPE_MGMT) {
|
||||
ret = mwifiex_process_mgmt_packet(priv, skb);
|
||||
if (ret)
|
||||
mwifiex_dbg(adapter, ERROR, "Rx of mgmt packet failed");
|
||||
mwifiex_dbg(adapter, DATA, "Rx of mgmt packet failed");
|
||||
dev_kfree_skb_any(skb);
|
||||
return ret;
|
||||
}
|
||||
|
@ -310,8 +310,7 @@ int mwifiex_process_uap_rx_packet(struct mwifiex_private *priv,
|
||||
if (rx_pkt_type == PKT_TYPE_MGMT) {
|
||||
ret = mwifiex_process_mgmt_packet(priv, skb);
|
||||
if (ret)
|
||||
mwifiex_dbg(adapter, ERROR,
|
||||
"Rx of mgmt packet failed");
|
||||
mwifiex_dbg(adapter, DATA, "Rx of mgmt packet failed");
|
||||
dev_kfree_skb_any(skb);
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user