iwlwifi: pcie: move warning message into warning
Having a WARN_ON() followed by a printed message is less useful than having the message in the warning so move the message. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
This commit is contained in:
parent
22cba0c085
commit
bcbb8c9c7d
1 changed files with 4 additions and 5 deletions
|
@ -1495,12 +1495,11 @@ static int iwl_pcie_send_hcmd_sync(struct iwl_trans *trans,
|
||||||
IWL_DEBUG_INFO(trans, "Attempting to send sync command %s\n",
|
IWL_DEBUG_INFO(trans, "Attempting to send sync command %s\n",
|
||||||
get_cmd_string(trans_pcie, cmd->id));
|
get_cmd_string(trans_pcie, cmd->id));
|
||||||
|
|
||||||
if (WARN_ON(test_and_set_bit(STATUS_HCMD_ACTIVE,
|
if (WARN(test_and_set_bit(STATUS_HCMD_ACTIVE,
|
||||||
&trans_pcie->status))) {
|
&trans_pcie->status),
|
||||||
IWL_ERR(trans, "Command %s: a command is already active!\n",
|
"Command %s: a command is already active!\n",
|
||||||
get_cmd_string(trans_pcie, cmd->id));
|
get_cmd_string(trans_pcie, cmd->id)))
|
||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
|
||||||
|
|
||||||
IWL_DEBUG_INFO(trans, "Setting HCMD_ACTIVE for command %s\n",
|
IWL_DEBUG_INFO(trans, "Setting HCMD_ACTIVE for command %s\n",
|
||||||
get_cmd_string(trans_pcie, cmd->id));
|
get_cmd_string(trans_pcie, cmd->id));
|
||||||
|
|
Loading…
Add table
Reference in a new issue