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:
Dan Carpenter 2015-11-21 13:33:38 +03:00 committed by Emmanuel Grumbach
parent 20f4d39a28
commit 7281b16423
1 changed files with 1 additions and 1 deletions

View File

@ -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) {