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

Commit d6a03581 authored by Masanari Iida's avatar Masanari Iida Committed by James Bottomley
Browse files

[SCSI] qla2xxx: Fix typo in qla2xxx files



Correct spelling typo within qla2xxx files.

Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarChad Dupuis <chad.dupuis@qlogic.com>
Signed-off-by: default avatarJames Bottomley <JBottomley@Parallels.com>
parent 7916bb90
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2357,7 +2357,7 @@ ql_dbg(uint32_t level, scsi_qla_host_t *vha, int32_t id, const char *fmt, ...)

/*
 * This function is for formatting and logging debug information.
 * It is to be used when vha is not available and pci is availble,
 * It is to be used when vha is not available and pci is available,
 * i.e., before host allocation. It formats the message and logs it
 * to the messages file.
 * parameters:
@@ -2452,7 +2452,7 @@ ql_log(uint32_t level, scsi_qla_host_t *vha, int32_t id, const char *fmt, ...)

/*
 * This function is for formatting and logging log messages.
 * It is to be used when vha is not available and pci is availble,
 * It is to be used when vha is not available and pci is available,
 * i.e., before host allocation. It formats the message and logs
 * it to the messages file. All the messages are logged irrespective
 * of the value of ql2xextended_error_logging.
+2 −2
Original line number Diff line number Diff line
@@ -1130,7 +1130,7 @@ struct mid_db_entry_24xx {
/*
 * Virtual Port Control IOCB
 */
#define VP_CTRL_IOCB_TYPE	0x30	/* Vitual Port Control entry. */
#define VP_CTRL_IOCB_TYPE	0x30	/* Virtual Port Control entry. */
struct vp_ctrl_entry_24xx {
	uint8_t entry_type;		/* Entry type. */
	uint8_t entry_count;		/* Entry count. */
@@ -1166,7 +1166,7 @@ struct vp_ctrl_entry_24xx {
/*
 * Modify Virtual Port Configuration IOCB
 */
#define VP_CONFIG_IOCB_TYPE	0x31	/* Vitual Port Config entry. */
#define VP_CONFIG_IOCB_TYPE	0x31	/* Virtual Port Config entry. */
struct vp_config_entry_24xx {
	uint8_t entry_type;		/* Entry type. */
	uint8_t entry_count;		/* Entry count. */
+1 −1
Original line number Diff line number Diff line
@@ -1858,7 +1858,7 @@ qla2x00_alloc_iocbs(scsi_qla_host_t *vha, srb_t *sp)
	}
	if (index == MAX_OUTSTANDING_COMMANDS) {
		ql_log(ql_log_warn, vha, 0x700b,
		    "No room on oustanding cmd array.\n");
		    "No room on outstanding cmd array.\n");
		goto queuing_error;
	}

+1 −1
Original line number Diff line number Diff line
@@ -1414,7 +1414,7 @@ qla2x00_handle_sense(srb_t *sp, uint8_t *sense_data, uint32_t par_sense_len,

struct scsi_dif_tuple {
	__be16 guard;       /* Checksum */
	__be16 app_tag;         /* APPL identifer */
	__be16 app_tag;         /* APPL identifier */
	__be32 ref_tag;         /* Target LBA or indirect LBA */
};

+1 −1
Original line number Diff line number Diff line
@@ -643,7 +643,7 @@ qla25xx_create_req_que(struct qla_hw_data *ha, uint16_t options,
			&req->dma, GFP_KERNEL);
	if (req->ring == NULL) {
		ql_log(ql_log_fatal, base_vha, 0x00da,
		    "Failed to allocte memory for request_ring.\n");
		    "Failed to allocate memory for request_ring.\n");
		goto que_failed;
	}

Loading