summaryrefslogtreecommitdiffstats
path: root/drivers/s390/scsi/zfcp_fsf.c
diff options
context:
space:
mode:
authorHeiko Carstens <heiko.carstens@de.ibm.com>2007-07-18 10:55:10 +0200
committerJames Bottomley <jejb@mulgrave.localdomain>2007-07-18 18:32:53 +0200
commitaa551daf5cc6fb6c6e09bb993737f9cd46dc7145 (patch)
tree1559da3ccc3347e8975f43bdd7d060e08832682f /drivers/s390/scsi/zfcp_fsf.c
parent[SCSI] zfcp: Replace kmalloc/memset with kzalloc (diff)
downloadlinux-aa551daf5cc6fb6c6e09bb993737f9cd46dc7145.tar.xz
linux-aa551daf5cc6fb6c6e09bb993737f9cd46dc7145.zip
[SCSI] zfcp: NULL vs 0 usage
Get rid of two 'warning: Using plain integer as NULL pointer'. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Swen Schillig <swen@vnet.ibm.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/s390/scsi/zfcp_fsf.c')
-rw-r--r--drivers/s390/scsi/zfcp_fsf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/scsi/zfcp_fsf.c b/drivers/s390/scsi/zfcp_fsf.c
index 0eb31e162b15..b240800b78d7 100644
--- a/drivers/s390/scsi/zfcp_fsf.c
+++ b/drivers/s390/scsi/zfcp_fsf.c
@@ -1930,7 +1930,7 @@ static int zfcp_fsf_send_els_handler(struct zfcp_fsf_req *fsf_req)
skip_fsfstatus:
send_els->status = retval;
- if (send_els->handler != 0)
+ if (send_els->handler)
send_els->handler(send_els->handler_data);
return retval;