* [PATCH net-next] nfc: s3fwrn5: Release the nfc firmware
@ 2020-12-13 9:58 Bongsu Jeon
2020-12-14 15:47 ` Krzysztof Kozlowski
0 siblings, 1 reply; 2+ messages in thread
From: Bongsu Jeon @ 2020-12-13 9:58 UTC (permalink / raw)
To: linux-nfc
[-- Attachment #1: Type: text/plain, Size: 847 bytes --]
From: Bongsu Jeon <bongsu.jeon@samsung.com>
add the code to release the nfc firmware when the firmware image size is
wrong.
Signed-off-by: Bongsu Jeon <bongsu.jeon@samsung.com>
---
drivers/nfc/s3fwrn5/firmware.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/nfc/s3fwrn5/firmware.c b/drivers/nfc/s3fwrn5/firmware.c
index 4b5352e2b915..b70737b3070e 100644
--- a/drivers/nfc/s3fwrn5/firmware.c
+++ b/drivers/nfc/s3fwrn5/firmware.c
@@ -293,8 +293,10 @@ int s3fwrn5_fw_request_firmware(struct s3fwrn5_fw_info *fw_info)
if (ret < 0)
return ret;
- if (fw->fw->size < S3FWRN5_FW_IMAGE_HEADER_SIZE)
+ if (fw->fw->size < S3FWRN5_FW_IMAGE_HEADER_SIZE) {
+ release_firmware(fw->fw);
return -EINVAL;
+ }
memcpy(fw->date, fw->fw->data + 0x00, 12);
fw->date[12] = '\0';
--
2.17.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH net-next] nfc: s3fwrn5: Release the nfc firmware
2020-12-13 9:58 [PATCH net-next] nfc: s3fwrn5: Release the nfc firmware Bongsu Jeon
@ 2020-12-14 15:47 ` Krzysztof Kozlowski
0 siblings, 0 replies; 2+ messages in thread
From: Krzysztof Kozlowski @ 2020-12-14 15:47 UTC (permalink / raw)
To: linux-nfc
[-- Attachment #1: Type: text/plain, Size: 305 bytes --]
On Sun, Dec 13, 2020 at 06:58:50PM +0900, Bongsu Jeon wrote:
> From: Bongsu Jeon <bongsu.jeon@samsung.com>
>
> add the code to release the nfc firmware when the firmware image size is
> wrong.
s/add/Add/
s/nfc/NFC/
Reviewed-by: Krzysztof Kozlowski <krzk@kernel.org>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-12-14 15:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-13 9:58 [PATCH net-next] nfc: s3fwrn5: Release the nfc firmware Bongsu Jeon
2020-12-14 15:47 ` Krzysztof Kozlowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox