summaryrefslogtreecommitdiff
path: root/drivers/fc4
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2005-07-27 01:07:43 -0700
committerJames Bottomley <jejb@mulgrave.(none)>2005-07-30 09:47:53 -0500
commite572f7cc28a0b01b96ede3f78f448ad55c5e67ad (patch)
treec1794ceb5a56eea18d29b6bf482d9d1cd90ed785 /drivers/fc4
parent7cd7ae531c7896f90485ce6ebb2b1370a0a7d8c8 (diff)
[SCSI] fc4 warning fix
drivers/fc4/fc.c: In function `fcp_scsi_dev_reset': drivers/fc4/fc.c:933: warning: control reaches end of non-void function Cc: James Bottomley <James.Bottomley@steeleye.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/fc4')
-rw-r--r--drivers/fc4/fc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/fc4/fc.c b/drivers/fc4/fc.c
index 5d961f5e0ca0..e4710d1d1f9d 100644
--- a/drivers/fc4/fc.c
+++ b/drivers/fc4/fc.c
@@ -1004,8 +1004,8 @@ int fcp_scsi_dev_reset(Scsi_Cmnd *SCpnt)
return FAILED;
}
fc->rst_pkt->eh_state = SCSI_STATE_UNUSED;
- return SUCCESS;
#endif
+ return SUCCESS;
}
static int __fcp_scsi_host_reset(Scsi_Cmnd *SCpnt)