diff options
author | Avinash Patil <patila@marvell.com> | 2015-05-20 16:36:06 +0530 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2015-05-26 14:08:00 +0300 |
commit | ec21dc4a00905acb6c51eef0c29073e71e6e7ca1 (patch) | |
tree | 53f1b7a09d54cdc5745e859b36fa87eef9f5ad2b /drivers/net/wireless | |
parent | 7b457dd0d631ecc39b5ed88d551c76d0471a11b1 (diff) | |
download | talos-op-linux-ec21dc4a00905acb6c51eef0c29073e71e6e7ca1.tar.gz talos-op-linux-ec21dc4a00905acb6c51eef0c29073e71e6e7ca1.zip |
mwifiex: reduce severity of debug messages for mgmt rx
This would ensure dmesg logs are not spammed with "unknown mgmt frame
subtype" messages.
Reviewed-by: James Cameron <quozl@laptop.org>
Signed-off-by: Avinash Patil <patila@marvell.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/mwifiex/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/mwifiex/util.c b/drivers/net/wireless/mwifiex/util.c index 3c0b3c1cf259..370323a47ecb 100644 --- a/drivers/net/wireless/mwifiex/util.c +++ b/drivers/net/wireless/mwifiex/util.c @@ -350,8 +350,8 @@ mwifiex_parse_mgmt_packet(struct mwifiex_private *priv, u8 *payload, u16 len, } break; default: - mwifiex_dbg(priv->adapter, ERROR, - "unknown mgmt frame subytpe %#x\n", stype); + mwifiex_dbg(priv->adapter, INFO, + "unknown mgmt frame subtype %#x\n", stype); } return 0; |