rsi: fix error code in rsi_load_9116_firmware()
[ Upstream commitd0f8430332] This code returns success if the kmemdup() fails, but obviously it should return -ENOMEM instead. Fixes:e5a1ecc97e("rsi: add firmware loading for 9116 device") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Link: https://lore.kernel.org/r/20210805103746.GA26417@kili Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b4bbb77d88
commit
110ce7d256
@@ -1038,8 +1038,10 @@ static int rsi_load_9116_firmware(struct rsi_hw *adapter)
|
||||
}
|
||||
|
||||
ta_firmware = kmemdup(fw_entry->data, fw_entry->size, GFP_KERNEL);
|
||||
if (!ta_firmware)
|
||||
if (!ta_firmware) {
|
||||
status = -ENOMEM;
|
||||
goto fail_release_fw;
|
||||
}
|
||||
fw_p = ta_firmware;
|
||||
instructions_sz = fw_entry->size;
|
||||
rsi_dbg(INFO_ZONE, "FW Length = %d bytes\n", instructions_sz);
|
||||
|
||||
Reference in New Issue
Block a user