summaryrefslogtreecommitdiff
path: root/drivers/scsi/fcoe
diff options
context:
space:
mode:
authorMike Christie <michaelc@cs.wisc.edu>2009-10-21 23:27:44 (GMT)
committerJames Bottomley <James.Bottomley@suse.de>2009-12-04 18:00:31 (GMT)
commit8eca355fa8af660557fbdd5506bde1392eee9bfe (patch)
tree9c42e36295ad001aa4d898ae890be1d8d68b20d8 /drivers/scsi/fcoe
parente95147d8fa4e63bf6d8ff249f074d0047338fc61 (diff)
downloadlinux-fsl-qoriq-8eca355fa8af660557fbdd5506bde1392eee9bfe.tar.xz
[SCSI] fcoe: initialize return value in fcoe_destroy
When doing echo ethX > /sys..../destroy I am getting errors when the tear down succeeds. It looks like the reason for this is because the rc var is not getting set when the destruction works. This just sets it to zero. Signed-off-by: Mike Christie <michaelc@cs.wisc.edu> Signed-off-by: Robert Love <robert.w.love@intel.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/fcoe')
-rw-r--r--drivers/scsi/fcoe/fcoe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/fcoe/fcoe.c b/drivers/scsi/fcoe/fcoe.c
index 7c89887..8702c8d 100644
--- a/drivers/scsi/fcoe/fcoe.c
+++ b/drivers/scsi/fcoe/fcoe.c
@@ -1631,7 +1631,7 @@ static int fcoe_destroy(const char *buffer, struct kernel_param *kp)
{
struct fcoe_interface *fcoe;
struct net_device *netdev;
- int rc;
+ int rc = 0;
mutex_lock(&fcoe_config_mutex);
#ifdef CONFIG_FCOE_MODULE