Commit efc372c1 authored by Colin Ian King's avatar Colin Ian King Committed by Martin K. Petersen

scsi: megaraid_sas: fix spelling mistake "oustanding" -> "outstanding"

There are a couple of spelling mistakes in some kernel info and notice
messages. Fix these.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent bc136f4d
...@@ -2725,7 +2725,7 @@ static int megasas_wait_for_outstanding(struct megasas_instance *instance) ...@@ -2725,7 +2725,7 @@ static int megasas_wait_for_outstanding(struct megasas_instance *instance)
do { do {
if ((fw_state == MFI_STATE_FAULT) || atomic_read(&instance->fw_outstanding)) { if ((fw_state == MFI_STATE_FAULT) || atomic_read(&instance->fw_outstanding)) {
dev_info(&instance->pdev->dev, dev_info(&instance->pdev->dev,
"%s:%d waiting_for_outstanding: before issue OCR. FW state = 0x%x, oustanding 0x%x\n", "%s:%d waiting_for_outstanding: before issue OCR. FW state = 0x%x, outstanding 0x%x\n",
__func__, __LINE__, fw_state, atomic_read(&instance->fw_outstanding)); __func__, __LINE__, fw_state, atomic_read(&instance->fw_outstanding));
if (i == 3) if (i == 3)
goto kill_hba_and_failed; goto kill_hba_and_failed;
......
...@@ -4419,7 +4419,7 @@ int megasas_task_abort_fusion(struct scsi_cmnd *scmd) ...@@ -4419,7 +4419,7 @@ int megasas_task_abort_fusion(struct scsi_cmnd *scmd)
if (!smid) { if (!smid) {
ret = SUCCESS; ret = SUCCESS;
scmd_printk(KERN_NOTICE, scmd, "Command for which abort is" scmd_printk(KERN_NOTICE, scmd, "Command for which abort is"
" issued is not found in oustanding commands\n"); " issued is not found in outstanding commands\n");
mutex_unlock(&instance->reset_mutex); mutex_unlock(&instance->reset_mutex);
goto out; goto out;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment