Skip to content

Commit

Permalink
scsi: myrb: Fix spelling mistake "statux" -> "status"
Browse files Browse the repository at this point in the history
There is a spelling mistake in a dev_err() message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20250422170347.66792-1-colin.i.king@gmail.com
Reviewed-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
  • Loading branch information
Colin Ian King authored and Martin K. Petersen committed Apr 29, 2025
1 parent b0b7ee3 commit 9c51f24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/scsi/myrb.c
Original file line number Diff line number Diff line change
Expand Up @@ -891,7 +891,7 @@ static bool myrb_enable_mmio(struct myrb_hba *cb, mbox_mmio_init_t mmio_init_fn)
status = mmio_init_fn(pdev, base, &mbox);
if (status != MYRB_STATUS_SUCCESS) {
dev_err(&pdev->dev,
"Failed to enable mailbox, statux %02X\n",
"Failed to enable mailbox, status %02X\n",
status);
return false;
}
Expand Down

0 comments on commit 9c51f24

Please sign in to comment.