Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 59e13d48 authored by Masanari Iida's avatar Masanari Iida Committed by Jiri Kosina
Browse files

scsi: fix various printk and comment typos



Correct spelling typo within drivers/scsi

Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 0d4ba4d7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2888,7 +2888,7 @@ ahd_handle_lqiphase_error(struct ahd_softc *ahd, u_int lqistat1)
		ahd_outb(ahd, CLRINT, CLRSCSIINT);
		ahd_unpause(ahd);
	} else {
		printk("Reseting Channel for LQI Phase error\n");
		printk("Resetting Channel for LQI Phase error\n");
		ahd_dump_card_state(ahd);
		ahd_reset_channel(ahd, 'A', /*Initiate Reset*/TRUE);
	}
+2 −2
Original line number Diff line number Diff line
@@ -908,7 +908,7 @@ static void bnx2fc_indicate_netevent(void *context, unsigned long event,
		return;

	default:
		printk(KERN_ERR PFX "Unkonwn netevent %ld", event);
		printk(KERN_ERR PFX "Unknown netevent %ld", event);
		return;
	}

@@ -1738,7 +1738,7 @@ static int bnx2fc_ulp_get_stats(void *handle)
/**
 * bnx2fc_ulp_start - cnic callback to initialize & start adapter instance
 *
 * @handle:	transport handle pointing to adapter struture
 * @handle:	transport handle pointing to adapter structure
 *
 * This function maps adapter structure to pcidev structure and initiates
 *	firmware handshake to enable/initialize on-chip FCoE components.
+1 −1
Original line number Diff line number Diff line
@@ -492,7 +492,7 @@ static void sci_controller_process_completions(struct isci_host *ihost)
	u32 event_cycle;

	dev_dbg(&ihost->pdev->dev,
		"%s: completion queue begining get:0x%08x\n",
		"%s: completion queue beginning get:0x%08x\n",
		__func__,
		ihost->completion_queue_get);

+1 −1
Original line number Diff line number Diff line
@@ -212,7 +212,7 @@ static void isci_port_link_up(struct isci_host *isci_host,
		memcpy(iphy->sas_phy.attached_sas_addr,
		       iphy->frame_rcvd.iaf.sas_addr, SAS_ADDR_SIZE);
	} else {
		dev_err(&isci_host->pdev->dev, "%s: unkown target\n", __func__);
		dev_err(&isci_host->pdev->dev, "%s: unknown target\n", __func__);
		success = false;
	}

+3 −3
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ static struct mvumi_res *mvumi_alloc_mem_resource(struct mvumi_hba *mhba,

	if (!res) {
		dev_err(&mhba->pdev->dev,
			"Failed to allocate memory for resouce manager.\n");
			"Failed to allocate memory for resource manager.\n");
		return NULL;
	}

@@ -1007,13 +1007,13 @@ static int mvumi_handshake(struct mvumi_hba *mhba)
		tmp |= INT_MAP_COMAOUT | INT_MAP_COMAERR;
		iowrite32(tmp, regs + CPU_ENPOINTA_MASK_REG);
		iowrite32(mhba->list_num_io, mhba->ib_shadow);
		/* Set InBound List Avaliable count shadow */
		/* Set InBound List Available count shadow */
		iowrite32(lower_32_bits(mhba->ib_shadow_phys),
					regs + CLA_INB_AVAL_COUNT_BASEL);
		iowrite32(upper_32_bits(mhba->ib_shadow_phys),
					regs + CLA_INB_AVAL_COUNT_BASEH);

		/* Set OutBound List Avaliable count shadow */
		/* Set OutBound List Available count shadow */
		iowrite32((mhba->list_num_io-1) | CL_POINTER_TOGGLE,
						mhba->ob_shadow);
		iowrite32(lower_32_bits(mhba->ob_shadow_phys), regs + 0x5B0);
Loading