Commit 845bbb09 authored by Bart Van Assche's avatar Bart Van Assche Committed by Martin K. Petersen

scsi: qla2xxx: Fix formatting of pointer types

Improve source code readability by following the Linux kernel coding style
for pointer types. This patch only changes whitespace.

Cc: Himanshu Madhani <hmadhani@marvell.com>
Cc: Giridhar Malavali <gmalavali@marvell.com>
Reviewed-by: default avatarJohannes Thumshirn <jthumshirn@suse.de>
Acked-by: default avatarHimanshu Madhani <hmadhani@marvell.com>
Signed-off-by: default avatarBart Van Assche <bvanassche@acm.org>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent bd432bb5
...@@ -3189,7 +3189,7 @@ struct isp_operations { ...@@ -3189,7 +3189,7 @@ struct isp_operations {
int (*start_scsi) (srb_t *); int (*start_scsi) (srb_t *);
int (*start_scsi_mq) (srb_t *); int (*start_scsi_mq) (srb_t *);
int (*abort_isp) (struct scsi_qla_host *); int (*abort_isp) (struct scsi_qla_host *);
int (*iospace_config)(struct qla_hw_data*); int (*iospace_config)(struct qla_hw_data *);
int (*initialize_adapter)(struct scsi_qla_host *); int (*initialize_adapter)(struct scsi_qla_host *);
}; };
......
...@@ -243,7 +243,7 @@ extern void qla24xx_report_id_acquisition(scsi_qla_host_t *, ...@@ -243,7 +243,7 @@ extern void qla24xx_report_id_acquisition(scsi_qla_host_t *,
struct vp_rpt_id_entry_24xx *); struct vp_rpt_id_entry_24xx *);
extern void qla2x00_do_dpc_all_vps(scsi_qla_host_t *); extern void qla2x00_do_dpc_all_vps(scsi_qla_host_t *);
extern int qla24xx_vport_create_req_sanity_check(struct fc_vport *); extern int qla24xx_vport_create_req_sanity_check(struct fc_vport *);
extern scsi_qla_host_t * qla24xx_create_vhost(struct fc_vport *); extern scsi_qla_host_t *qla24xx_create_vhost(struct fc_vport *);
extern void qla2x00_sp_free_dma(void *); extern void qla2x00_sp_free_dma(void *);
extern char *qla2x00_get_fw_version_str(struct scsi_qla_host *, char *); extern char *qla2x00_get_fw_version_str(struct scsi_qla_host *, char *);
......
...@@ -1595,8 +1595,8 @@ qla24xx_els_ct_entry(scsi_qla_host_t *vha, struct req_que *req, ...@@ -1595,8 +1595,8 @@ qla24xx_els_ct_entry(scsi_qla_host_t *vha, struct req_que *req,
} }
comp_status = fw_status[0] = le16_to_cpu(pkt->comp_status); comp_status = fw_status[0] = le16_to_cpu(pkt->comp_status);
fw_status[1] = le16_to_cpu(((struct els_sts_entry_24xx*)pkt)->error_subcode_1); fw_status[1] = le16_to_cpu(((struct els_sts_entry_24xx *)pkt)->error_subcode_1);
fw_status[2] = le16_to_cpu(((struct els_sts_entry_24xx*)pkt)->error_subcode_2); fw_status[2] = le16_to_cpu(((struct els_sts_entry_24xx *)pkt)->error_subcode_2);
if (iocb_type == ELS_IOCB_TYPE) { if (iocb_type == ELS_IOCB_TYPE) {
els = &sp->u.iocb_cmd; els = &sp->u.iocb_cmd;
......
...@@ -1223,7 +1223,7 @@ qla2x00_wait_for_chip_reset(scsi_qla_host_t *vha) ...@@ -1223,7 +1223,7 @@ qla2x00_wait_for_chip_reset(scsi_qla_host_t *vha)
static int static int
sp_get(struct srb *sp) sp_get(struct srb *sp)
{ {
if (!refcount_inc_not_zero((refcount_t*)&sp->ref_count)) if (!refcount_inc_not_zero((refcount_t *)&sp->ref_count))
/* kref get fail */ /* kref get fail */
return ENXIO; return ENXIO;
else else
......
...@@ -703,7 +703,7 @@ void qla24xx_do_nack_work(struct scsi_qla_host *vha, struct qla_work_evt *e) ...@@ -703,7 +703,7 @@ void qla24xx_do_nack_work(struct scsi_qla_host *vha, struct qla_work_evt *e)
break; break;
} }
qla24xx_async_notify_ack(vha, e->u.nack.fcport, qla24xx_async_notify_ack(vha, e->u.nack.fcport,
(struct imm_ntfy_from_isp*)e->u.nack.iocb, e->u.nack.type); (struct imm_ntfy_from_isp *)e->u.nack.iocb, e->u.nack.type);
} }
void qla24xx_delete_sess_fn(struct work_struct *work) void qla24xx_delete_sess_fn(struct work_struct *work)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment