mirror of https://gitee.com/openkylin/linux.git
mwifiex: do not flood kmsg/dmesg with USB debug messages
When TX data URB reaches high water mark the message "data: -ENOSR is returned" is printed. This is not an error case, so change it to debug print. Signed-off-by: Ujjal Roy <royujjal@gmail.com> Signed-off-by: Bing Zhao <bzhao@marvell.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
c2868adebd
commit
bd2a864a14
|
@ -112,7 +112,7 @@ int mwifiex_process_tx(struct mwifiex_private *priv, struct sk_buff *skb,
|
|||
|
||||
switch (ret) {
|
||||
case -ENOSR:
|
||||
dev_err(adapter->dev, "data: -ENOSR is returned\n");
|
||||
dev_dbg(adapter->dev, "data: -ENOSR is returned\n");
|
||||
break;
|
||||
case -EBUSY:
|
||||
if ((GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA) &&
|
||||
|
|
Loading…
Reference in New Issue