diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2005-08-28 16:22:37 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-08-28 16:53:48 -0400 |
commit | 20b1730af3ae05450b0e03f5aed40c4313f65db6 (patch) | |
tree | 5b4508801e851a124f1fc1e08f8128969bb1a5d1 /drivers/s390/scsi/zfcp_ccw.c | |
parent | 7f84f226389fc5f47b3cb36818972e2e171607de (diff) |
[PATCH] zfcp: bugfix and compile fixes
Bugfix (usage of uninitialized pointer in zfcp_port_dequeue) and compile
fixes for the zfcp device driver.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Acked-by: James Bottomley <James.Bottomley@steeleye.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/s390/scsi/zfcp_ccw.c')
-rw-r--r-- | drivers/s390/scsi/zfcp_ccw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/scsi/zfcp_ccw.c b/drivers/s390/scsi/zfcp_ccw.c index 3c65aedaa97f..b30abab77da3 100644 --- a/drivers/s390/scsi/zfcp_ccw.c +++ b/drivers/s390/scsi/zfcp_ccw.c | |||
@@ -203,7 +203,7 @@ zfcp_ccw_set_offline(struct ccw_device *ccw_device) | |||
203 | { | 203 | { |
204 | struct zfcp_adapter *adapter; | 204 | struct zfcp_adapter *adapter; |
205 | struct zfcp_port *port; | 205 | struct zfcp_port *port; |
206 | struct fc_port *rport; | 206 | struct fc_rport *rport; |
207 | 207 | ||
208 | down(&zfcp_data.config_sema); | 208 | down(&zfcp_data.config_sema); |
209 | adapter = dev_get_drvdata(&ccw_device->dev); | 209 | adapter = dev_get_drvdata(&ccw_device->dev); |