diff options
author | Martin Peschke <mp3@de.ibm.com> | 2008-04-18 06:51:55 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-04-18 12:50:17 -0400 |
commit | 1f6f7129ebac007629b28764bfa5147817682692 (patch) | |
tree | 4e0420ff91ed617a97e48b0db81d334e5ba80935 /drivers/s390/scsi/zfcp_scsi.c | |
parent | 99773aab0377ee5bcaf37b7cd2577c3465422dab (diff) |
[SCSI] zfcp: fix 31 bit compile warnings
drivers/s390/scsi/zfcp_aux.c: In function ‘zfcp_fsf_incoming_els_rscn’:
drivers/s390/scsi/zfcp_aux.c:1379: warning: cast from pointer to integer of
different size
drivers/s390/scsi/zfcp_aux.c: In function ‘zfcp_fsf_incoming_els_plogi’:
drivers/s390/scsi/zfcp_aux.c:1432: warning: cast from pointer to integer of
different size
drivers/s390/scsi/zfcp_aux.c: In function ‘zfcp_fsf_incoming_els_logo’:
drivers/s390/scsi/zfcp_aux.c:1457: warning: cast from pointer to integer of
different size
..
Just passing pointers rids us of these warnings and improves readability.
Signed-off-by: Martin Peschke <mp3@de.ibm.com>
Signed-off-by: Christof Schmitt <christof.schmitt@de.ibm.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/s390/scsi/zfcp_scsi.c')
-rw-r--r-- | drivers/s390/scsi/zfcp_scsi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/s390/scsi/zfcp_scsi.c b/drivers/s390/scsi/zfcp_scsi.c index cd844b2ad7a1..3c9880e46e81 100644 --- a/drivers/s390/scsi/zfcp_scsi.c +++ b/drivers/s390/scsi/zfcp_scsi.c | |||
@@ -185,7 +185,7 @@ static void zfcp_scsi_slave_destroy(struct scsi_device *sdpnt) | |||
185 | atomic_clear_mask(ZFCP_STATUS_UNIT_REGISTERED, &unit->status); | 185 | atomic_clear_mask(ZFCP_STATUS_UNIT_REGISTERED, &unit->status); |
186 | sdpnt->hostdata = NULL; | 186 | sdpnt->hostdata = NULL; |
187 | unit->device = NULL; | 187 | unit->device = NULL; |
188 | zfcp_erp_unit_failed(unit, 12, 0); | 188 | zfcp_erp_unit_failed(unit, 12, NULL); |
189 | zfcp_unit_put(unit); | 189 | zfcp_unit_put(unit); |
190 | } else | 190 | } else |
191 | ZFCP_LOG_NORMAL("bug: no unit associated with SCSI device at " | 191 | ZFCP_LOG_NORMAL("bug: no unit associated with SCSI device at " |
@@ -529,7 +529,7 @@ static int zfcp_scsi_eh_host_reset_handler(struct scsi_cmnd *scpnt) | |||
529 | unit->fcp_lun, unit->port->wwpn, | 529 | unit->fcp_lun, unit->port->wwpn, |
530 | zfcp_get_busid_by_adapter(unit->port->adapter)); | 530 | zfcp_get_busid_by_adapter(unit->port->adapter)); |
531 | 531 | ||
532 | zfcp_erp_adapter_reopen(adapter, 0, 141, (u64)scpnt); | 532 | zfcp_erp_adapter_reopen(adapter, 0, 141, scpnt); |
533 | zfcp_erp_wait(adapter); | 533 | zfcp_erp_wait(adapter); |
534 | 534 | ||
535 | return SUCCESS; | 535 | return SUCCESS; |