staging: slicoss: release firmware before returning
we request_firmware in slic_card_download_gbrcv and we return out with out calling release_firmware, where we compare against a firmware lengths of certain device ids. Signed-off-by: Devendra Naga <devendra.aaru@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
651d4bc7ed
commit
7ee34ab2b3
1 changed files with 6 additions and 2 deletions
|
@ -528,12 +528,16 @@ static int slic_card_download_gbrcv(struct adapter *adapter)
|
||||||
index += 4;
|
index += 4;
|
||||||
switch (adapter->devid) {
|
switch (adapter->devid) {
|
||||||
case SLIC_2GB_DEVICE_ID:
|
case SLIC_2GB_DEVICE_ID:
|
||||||
if (rcvucodelen != OasisRcvUCodeLen)
|
if (rcvucodelen != OasisRcvUCodeLen) {
|
||||||
|
release_firmware(fw);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case SLIC_1GB_DEVICE_ID:
|
case SLIC_1GB_DEVICE_ID:
|
||||||
if (rcvucodelen != GBRcvUCodeLen)
|
if (rcvucodelen != GBRcvUCodeLen) {
|
||||||
|
release_firmware(fw);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
ASSERT(0);
|
ASSERT(0);
|
||||||
|
|
Loading…
Add table
Reference in a new issue