|
@@ -982,7 +982,8 @@ static int iwl_send_cmd_async(struct iwl_trans *trans, struct iwl_host_cmd *cmd)
|
|
|
|
|
|
ret = iwl_enqueue_hcmd(trans, cmd);
|
|
|
if (ret < 0) {
|
|
|
- IWL_ERR(trans, "Error sending %s: enqueue_hcmd failed: %d\n",
|
|
|
+ IWL_DEBUG_QUIET_RFKILL(trans,
|
|
|
+ "Error sending %s: enqueue_hcmd failed: %d\n",
|
|
|
get_cmd_string(cmd->id), ret);
|
|
|
return ret;
|
|
|
}
|
|
@@ -1008,7 +1009,8 @@ static int iwl_send_cmd_sync(struct iwl_trans *trans, struct iwl_host_cmd *cmd)
|
|
|
if (cmd_idx < 0) {
|
|
|
ret = cmd_idx;
|
|
|
clear_bit(STATUS_HCMD_ACTIVE, &trans->shrd->status);
|
|
|
- IWL_ERR(trans, "Error sending %s: enqueue_hcmd failed: %d\n",
|
|
|
+ IWL_DEBUG_QUIET_RFKILL(trans,
|
|
|
+ "Error sending %s: enqueue_hcmd failed: %d\n",
|
|
|
get_cmd_string(cmd->id), ret);
|
|
|
return ret;
|
|
|
}
|
|
@@ -1022,12 +1024,12 @@ static int iwl_send_cmd_sync(struct iwl_trans *trans, struct iwl_host_cmd *cmd)
|
|
|
&trans_pcie->txq[trans->shrd->cmd_queue];
|
|
|
struct iwl_queue *q = &txq->q;
|
|
|
|
|
|
- IWL_ERR(trans,
|
|
|
+ IWL_DEBUG_QUIET_RFKILL(trans,
|
|
|
"Error sending %s: time out after %dms.\n",
|
|
|
get_cmd_string(cmd->id),
|
|
|
jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
|
|
|
|
|
|
- IWL_ERR(trans,
|
|
|
+ IWL_DEBUG_QUIET_RFKILL(trans,
|
|
|
"Current CMD queue read_ptr %d write_ptr %d\n",
|
|
|
q->read_ptr, q->write_ptr);
|
|
|
|