diff options
author | Jayamohan Kallickal <jayamohank@serverengines.com> | 2010-01-23 05:37:40 +0530 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2010-02-08 18:34:15 -0600 |
commit | f55a24f2c24b63f8b4329eb28b4aec02a4bcf5d0 (patch) | |
tree | 83794a20c7bcb0c59221f796b3e41b7158bc9f5c | |
parent | 5dc1c416b39531e3bcf0651ca4123e64228dd553 (diff) | |
download | linux-3.10-f55a24f2c24b63f8b4329eb28b4aec02a4bcf5d0.tar.gz linux-3.10-f55a24f2c24b63f8b4329eb28b4aec02a4bcf5d0.tar.bz2 linux-3.10-f55a24f2c24b63f8b4329eb28b4aec02a4bcf5d0.zip |
[SCSI] be2iscsi: correcting the return
This patch fixes an issue where return was not called properly.
Thanks to Mike Christie for spotting this
Signed-off-by: Jayamohan Kallickal <jayamohank@serverengines.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
-rw-r--r-- | drivers/scsi/be2iscsi/be_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/be2iscsi/be_main.c b/drivers/scsi/be2iscsi/be_main.c index 2f0027c5605..6b700ad2bb4 100644 --- a/drivers/scsi/be2iscsi/be_main.c +++ b/drivers/scsi/be2iscsi/be_main.c @@ -3873,7 +3873,7 @@ static int __init beiscsi_module_init(void) SE_DEBUG(DBG_LVL_1, "beiscsi_module_init - Unable to register beiscsi" "transport.\n"); - ret = -ENOMEM; + return -ENOMEM; } SE_DEBUG(DBG_LVL_8, "In beiscsi_module_init, tt=%p \n", &beiscsi_iscsi_transport); |