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

scsi: csiostor: fix spelling mistake: "Couldnt" -> "Couldn't"

Trivial fix to spelling mistake in error message text.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent ab9dd494
...@@ -1216,7 +1216,7 @@ csio_mb_issue(struct csio_hw *hw, struct csio_mb *mbp) ...@@ -1216,7 +1216,7 @@ csio_mb_issue(struct csio_hw *hw, struct csio_mb *mbp)
/* Queue mbox cmd, if another mbox cmd is active */ /* Queue mbox cmd, if another mbox cmd is active */
if (mbp->mb_cbfn == NULL) { if (mbp->mb_cbfn == NULL) {
rv = -EBUSY; rv = -EBUSY;
csio_dbg(hw, "Couldnt own Mailbox %x op:0x%x\n", csio_dbg(hw, "Couldn't own Mailbox %x op:0x%x\n",
hw->pfn, *((uint8_t *)mbp->mb)); hw->pfn, *((uint8_t *)mbp->mb));
goto error_out; goto error_out;
...@@ -1244,14 +1244,14 @@ csio_mb_issue(struct csio_hw *hw, struct csio_mb *mbp) ...@@ -1244,14 +1244,14 @@ csio_mb_issue(struct csio_hw *hw, struct csio_mb *mbp)
rv = owner ? -EBUSY : -ETIMEDOUT; rv = owner ? -EBUSY : -ETIMEDOUT;
csio_dbg(hw, csio_dbg(hw,
"Couldnt own Mailbox %x op:0x%x " "Couldn't own Mailbox %x op:0x%x "
"owner:%x\n", "owner:%x\n",
hw->pfn, *((uint8_t *)mbp->mb), owner); hw->pfn, *((uint8_t *)mbp->mb), owner);
goto error_out; goto error_out;
} else { } else {
if (mbm->mcurrent == NULL) { if (mbm->mcurrent == NULL) {
csio_err(hw, csio_err(hw,
"Couldnt own Mailbox %x " "Couldn't own Mailbox %x "
"op:0x%x owner:%x\n", "op:0x%x owner:%x\n",
hw->pfn, *((uint8_t *)mbp->mb), hw->pfn, *((uint8_t *)mbp->mb),
owner); owner);
......
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