rtw88: Fix an error message

The WARN_ON() macro takes a condition, not a warning message.  I've
changed this to use WARN() instead.

Fixes: 4136214f7c ("rtw88: add BT co-existence support")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
Dan Carpenter 2019-08-14 13:46:42 +03:00 committed by Kalle Valo
parent fe025ef7d0
commit 52929cad32

View file

@ -1059,7 +1059,7 @@ static void rtw_coex_set_ant_path(struct rtw_dev *rtwdev, bool force, u8 phase)
pos_type = COEX_SWITCH_TO_WLG_BT; pos_type = COEX_SWITCH_TO_WLG_BT;
break; break;
default: default:
WARN_ON("unknown phase when setting antenna path\n"); WARN(1, "unknown phase when setting antenna path\n");
return; return;
} }