Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

scsi: mpi3mr: Fix some spelling mistakes

There are some spelling mistakes in some literal strings. Fix them.

Link: https://lore.kernel.org/r/20211224175240.1348942-1-colin.i.king@gmail.com
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>

authored by

Colin Ian King and committed by
Martin K. Petersen
5867b856 9211faa3

+3 -3
+3 -3
drivers/scsi/mpi3mr/mpi3mr_fw.c
··· 901 901 }, 902 902 { MPI3MR_RESET_FROM_SYSFS, "sysfs invocation" }, 903 903 { MPI3MR_RESET_FROM_SYSFS_TIMEOUT, "sysfs TM timeout" }, 904 - { MPI3MR_RESET_FROM_FIRMWARE, "firmware asynchronus reset" }, 904 + { MPI3MR_RESET_FROM_FIRMWARE, "firmware asynchronous reset" }, 905 905 }; 906 906 907 907 /** ··· 1242 1242 ioc_state = mpi3mr_get_iocstate(mrioc); 1243 1243 if (ioc_state == MRIOC_STATE_READY) { 1244 1244 ioc_info(mrioc, 1245 - "successfully transistioned to %s state\n", 1245 + "successfully transitioned to %s state\n", 1246 1246 mpi3mr_iocstate_name(ioc_state)); 1247 1247 return 0; 1248 1248 } ··· 3844 3844 3845 3845 if (mrioc->shost->nr_hw_queues > mrioc->num_op_reply_q) { 3846 3846 ioc_err(mrioc, 3847 - "cannot create minimum number of operatioanl queues expected:%d created:%d\n", 3847 + "cannot create minimum number of operational queues expected:%d created:%d\n", 3848 3848 mrioc->shost->nr_hw_queues, mrioc->num_op_reply_q); 3849 3849 goto out_failed_noretry; 3850 3850 }