[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>
This commit is contained in:
committed by
James Bottomley
parent
5dc1c416b3
commit
f55a24f2c2
@@ -3873,7 +3873,7 @@ static int __init beiscsi_module_init(void)
|
|||||||
SE_DEBUG(DBG_LVL_1,
|
SE_DEBUG(DBG_LVL_1,
|
||||||
"beiscsi_module_init - Unable to register beiscsi"
|
"beiscsi_module_init - Unable to register beiscsi"
|
||||||
"transport.\n");
|
"transport.\n");
|
||||||
ret = -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
SE_DEBUG(DBG_LVL_8, "In beiscsi_module_init, tt=%p \n",
|
SE_DEBUG(DBG_LVL_8, "In beiscsi_module_init, tt=%p \n",
|
||||||
&beiscsi_iscsi_transport);
|
&beiscsi_iscsi_transport);
|
||||||
|
Reference in New Issue
Block a user