[SCSI] qla1280: fix 32 bit segment code

There's an error remaining in the 32 bit descriptor code after the
conversion to dma accessors: req_cnt is left uninitialised.

qla1280_32bit_start_scsi gives the following warnings:

drivers/scsi/qla1280.c: In function 'qla1280_32bit_start_scsi':
drivers/scsi/qla1280.c:3044: warning: unused variable 'dma_handle'
drivers/scsi/qla1280.c: In function 'qla1280_queuecommand':
drivers/scsi/qla1280.c:3060: warning: 'req_cnt' is used uninitialized in this function
drivers/scsi/qla1280.c:3042: note: 'req_cnt' was declared here

Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>

authored by FUJITA Tomonori and committed by James Bottomley 3a43e69c fd0b45df

+1 -1
+1 -1
drivers/scsi/qla1280.c
··· 3041 3041 int cnt; 3042 3042 int req_cnt; 3043 3043 int seg_cnt; 3044 - dma_addr_t dma_handle; 3045 3044 u8 dir; 3046 3045 3047 3046 ENTER("qla1280_32bit_start_scsi"); ··· 3049 3050 cmd->cmnd[0]); 3050 3051 3051 3052 /* Calculate number of entries and segments required. */ 3053 + req_cnt = 1; 3052 3054 seg_cnt = scsi_dma_map(cmd); 3053 3055 if (seg_cnt) { 3054 3056 /*