From: Vikas Chaudhary Date: Thu, 7 Oct 2010 05:48:53 +0000 (-0700) Subject: [SCSI] qla4xxx: correct data type of sense_len in qla4xxx_status_cont_entry X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=735e41543c12c245290cf652727893a66cbd8ab6;p=deliverable%2Flinux.git [SCSI] qla4xxx: correct data type of sense_len in qla4xxx_status_cont_entry change data type of sense_len from uint8_t to uint16_t Signed-off-by: Vikas Chaudhary Signed-off-by: Ravi Anand Reviewed-by: Mike Christie Signed-off-by: James Bottomley --- diff --git a/drivers/scsi/qla4xxx/ql4_isr.c b/drivers/scsi/qla4xxx/ql4_isr.c index 2a1ab63f3eb0..1076fbf868c6 100644 --- a/drivers/scsi/qla4xxx/ql4_isr.c +++ b/drivers/scsi/qla4xxx/ql4_isr.c @@ -72,7 +72,7 @@ qla4xxx_status_cont_entry(struct scsi_qla_host *ha, { struct srb *srb = ha->status_srb; struct scsi_cmnd *cmd; - uint8_t sense_len; + uint16_t sense_len; if (srb == NULL) return;