aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/mvumi.c
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2012-04-24 11:24:16 -0400
committerJiri Kosina <jkosina@suse.cz>2012-09-01 11:24:35 -0400
commit59e13d48334c38a73aec1759fe9a13eb4e476bf6 (patch)
tree11b57ef5ae69131c9381760504cc0210474ce8ab /drivers/scsi/mvumi.c
parent0d4ba4d7b115bd37cfa64274273eb91e848bd236 (diff)
scsi: fix various printk and comment typos
Correct spelling typo within drivers/scsi Signed-off-by: Masanari Iida <standby24x7@gmail.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/scsi/mvumi.c')
-rw-r--r--drivers/scsi/mvumi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/mvumi.c b/drivers/scsi/mvumi.c
index 88cf1db21a79..783edc7c6b98 100644
--- a/drivers/scsi/mvumi.c
+++ b/drivers/scsi/mvumi.c
@@ -122,7 +122,7 @@ static struct mvumi_res *mvumi_alloc_mem_resource(struct mvumi_hba *mhba,
122 122
123 if (!res) { 123 if (!res) {
124 dev_err(&mhba->pdev->dev, 124 dev_err(&mhba->pdev->dev,
125 "Failed to allocate memory for resouce manager.\n"); 125 "Failed to allocate memory for resource manager.\n");
126 return NULL; 126 return NULL;
127 } 127 }
128 128
@@ -1007,13 +1007,13 @@ static int mvumi_handshake(struct mvumi_hba *mhba)
1007 tmp |= INT_MAP_COMAOUT | INT_MAP_COMAERR; 1007 tmp |= INT_MAP_COMAOUT | INT_MAP_COMAERR;
1008 iowrite32(tmp, regs + CPU_ENPOINTA_MASK_REG); 1008 iowrite32(tmp, regs + CPU_ENPOINTA_MASK_REG);
1009 iowrite32(mhba->list_num_io, mhba->ib_shadow); 1009 iowrite32(mhba->list_num_io, mhba->ib_shadow);
1010 /* Set InBound List Avaliable count shadow */ 1010 /* Set InBound List Available count shadow */
1011 iowrite32(lower_32_bits(mhba->ib_shadow_phys), 1011 iowrite32(lower_32_bits(mhba->ib_shadow_phys),
1012 regs + CLA_INB_AVAL_COUNT_BASEL); 1012 regs + CLA_INB_AVAL_COUNT_BASEL);
1013 iowrite32(upper_32_bits(mhba->ib_shadow_phys), 1013 iowrite32(upper_32_bits(mhba->ib_shadow_phys),
1014 regs + CLA_INB_AVAL_COUNT_BASEH); 1014 regs + CLA_INB_AVAL_COUNT_BASEH);
1015 1015
1016 /* Set OutBound List Avaliable count shadow */ 1016 /* Set OutBound List Available count shadow */
1017 iowrite32((mhba->list_num_io-1) | CL_POINTER_TOGGLE, 1017 iowrite32((mhba->list_num_io-1) | CL_POINTER_TOGGLE,
1018 mhba->ob_shadow); 1018 mhba->ob_shadow);
1019 iowrite32(lower_32_bits(mhba->ob_shadow_phys), regs + 0x5B0); 1019 iowrite32(lower_32_bits(mhba->ob_shadow_phys), regs + 0x5B0);