Commit ac68fb7f authored by Yang Li's avatar Yang Li Committed by Mauro Carvalho Chehab
Browse files

media: atomisp: remove redundant NULL check

Fix below warnings reported by coccicheck:
./drivers/staging/media/atomisp/pci/atomisp_cmd.c:4269:2-8: WARNING:
NULL check before some freeing functions is not needed.
./drivers/staging/media/atomisp/pci/atomisp_cmd.c:4626:2-8: WARNING:
NULL check before some freeing functions is not needed.

Link: https://lore.kernel.org/linux-media/1611220312-89384-3-git-send-email-abaci-bugfix@linux.alibaba.com


Reported-by: default avatarAbaci Robot <abaci@linux.alibaba.com>
Signed-off-by: default avatarYang Li <abaci-bugfix@linux.alibaba.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 58fba0b1
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -4265,7 +4265,6 @@ int atomisp_set_parameters(struct video_device *vdev,
apply_parameter_failed:
	if (css_param)
		atomisp_free_css_parameters(css_param);
	if (param)
	kvfree(param);

	return ret;
@@ -4626,7 +4625,6 @@ atomisp_v4l2_framebuffer_to_css_frame(const struct v4l2_framebuffer *arg,
err:
	if (ret && res)
		ia_css_frame_free(res);
	if (tmp_buf)
	vfree(tmp_buf);
	if (ret == 0)
		*result = res;