summaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorJesper Juhl <jj@chaosbits.net>2012-04-09 16:51:48 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-04-19 09:09:13 -0300
commitb803cc58c33c0c5b6220150336a6f1c7958f1404 (patch)
tree9b169079f0e4a2a8bfbc641f44f48ac6e085edd5 /drivers/staging
parent0a3475eb618321013dab9ac744201ed09e8061f9 (diff)
downloadlinux-b803cc58c33c0c5b6220150336a6f1c7958f1404.tar.gz
linux-b803cc58c33c0c5b6220150336a6f1c7958f1404.tar.xz
linux-b803cc58c33c0c5b6220150336a6f1c7958f1404.zip
[media] staging: as102: Remove redundant NULL check before release_firmware() and pointless comments
release_firmware() deals gracefullt with NULL pointers - it's redundant to check for them before calling the function. Also remove a few pointless comments - it's rather obvious from the code that kfree() free's a buffer and that release_firmware() releases firmware - comments just stating that add no value. Signed-off-by: Jesper Juhl <jj@chaosbits.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/media/as102/as102_fw.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/staging/media/as102/as102_fw.c b/drivers/staging/media/as102/as102_fw.c
index 1075fb1df0d9..b9670ee41b4e 100644
--- a/drivers/staging/media/as102/as102_fw.c
+++ b/drivers/staging/media/as102/as102_fw.c
@@ -230,11 +230,8 @@ int as102_fw_upload(struct as10x_bus_adapter_t *bus_adap)
pr_info("%s: firmware: %s loaded with success\n",
DRIVER_NAME, fw2);
error:
- /* free data buffer */
kfree(cmd_buf);
- /* release firmware if needed */
- if (firmware != NULL)
- release_firmware(firmware);
+ release_firmware(firmware);
LEAVE();
return errno;