mwifiex: correct TDLS link delete failure message priority

Commit d8d2f19feb ("mwifiex: silence TDLS link delete failure
for nonexistent link") lowers the priority of error message when
TDLS link is already deleted. But it had got increased by
commit acebe8c10a ("mwifiex: change dbg print func to
mwifiex_dbg")

Reported-by: Nicholas Mc Guire <der.herr@hofr.at>
Signed-off-by: Amitkumar Karwar <akarwar@marvell.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
Amitkumar Karwar 2015-07-28 07:22:20 -07:00 коммит произвёл Kalle Valo
Родитель 12e0359681
Коммит 100a008331
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -895,7 +895,7 @@ static int mwifiex_ret_tdls_oper(struct mwifiex_private *priv,
case ACT_TDLS_DELETE: case ACT_TDLS_DELETE:
if (reason) { if (reason) {
if (!node || reason == TDLS_ERR_LINK_NONEXISTENT) if (!node || reason == TDLS_ERR_LINK_NONEXISTENT)
mwifiex_dbg(priv->adapter, ERROR, mwifiex_dbg(priv->adapter, MSG,
"TDLS link delete for %pM failed: reason %d\n", "TDLS link delete for %pM failed: reason %d\n",
cmd_tdls_oper->peer_mac, reason); cmd_tdls_oper->peer_mac, reason);
else else