mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 05:31:17 -04:00
iwlwifi: mvm: rs: fix a warning message
WARN_ON_ONCE() doesn't take a message, it only takes a condition. I have changed this to WARN(1, ...). Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
This commit is contained in:
committed by
Emmanuel Grumbach
parent
20f4d39a28
commit
7281b16423
@@ -1827,7 +1827,7 @@ static int rs_switch_to_column(struct iwl_mvm *mvm,
|
||||
rate->type = lq_sta->is_vht ? LQ_VHT_MIMO2 : LQ_HT_MIMO2;
|
||||
rate_mask = lq_sta->active_mimo2_rate;
|
||||
} else {
|
||||
WARN_ON_ONCE("Bad column mode");
|
||||
WARN_ONCE(1, "Bad column mode");
|
||||
}
|
||||
|
||||
if (column->mode != RS_LEGACY) {
|
||||
|
||||
Reference in New Issue
Block a user