mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00:00
qlcnic: fix error return code in qlcnic_83xx_restart_hw()
[ Upstream commit3beb9be165
] Fix to return a negative error code from the error handling case instead of 0, as done elsewhere in this function. Fixes:3ced0a88cd
("qlcnic: Add support to run firmware POST") Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com> Link: https://lore.kernel.org/r/1605248186-16013-1-git-send-email-zhangchangzhong@huawei.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5241fa6e7a
commit
3179068329
1 changed files with 2 additions and 1 deletions
|
@ -2251,7 +2251,8 @@ static int qlcnic_83xx_restart_hw(struct qlcnic_adapter *adapter)
|
|||
|
||||
/* Boot either flash image or firmware image from host file system */
|
||||
if (qlcnic_load_fw_file == 1) {
|
||||
if (qlcnic_83xx_load_fw_image_from_host(adapter))
|
||||
err = qlcnic_83xx_load_fw_image_from_host(adapter);
|
||||
if (err)
|
||||
return err;
|
||||
} else {
|
||||
QLC_SHARED_REG_WR32(adapter, QLCNIC_FW_IMG_VALID,
|
||||
|
|
Loading…
Reference in a new issue