mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 11:50:43 +09:00
media: staging/imx: Missing assignment in imx_media_capture_device_register()
[ Upstream commitef0ed05dce] There was supposed to be a "ret = " assignment here, otherwise the error handling on the next line won't work. Fixes:64b5a49df4("[media] media: imx: Add Capture Device Interface") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Reviewed-by: Steve Longerbeam <slongerbeam@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
5132f9f3d3
commit
321c5b2793
@@ -785,7 +785,7 @@ int imx_media_capture_device_register(struct imx_media_video_dev *vdev)
|
||||
/* setup default format */
|
||||
fmt_src.pad = priv->src_sd_pad;
|
||||
fmt_src.which = V4L2_SUBDEV_FORMAT_ACTIVE;
|
||||
v4l2_subdev_call(sd, pad, get_fmt, NULL, &fmt_src);
|
||||
ret = v4l2_subdev_call(sd, pad, get_fmt, NULL, &fmt_src);
|
||||
if (ret) {
|
||||
v4l2_err(sd, "failed to get src_sd format\n");
|
||||
goto unreg;
|
||||
|
||||
Reference in New Issue
Block a user