提交 7c486c0f 编写于 作者: L Laurent Pinchart 提交者: Mauro Carvalho Chehab

[media] omap3isp: Don't ignore failure to locate external subdev

A failure to locate the external subdev for a non memory-to-memory
pipeline is a fatal error, don't ignore it.
Signed-off-by: NLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: NSakari Ailus <sakari.ailus@iki.fi>
Tested-by: NPeter Meerwald <pmeerw@pmeerw.net>
Signed-off-by: NMauro Carvalho Chehab <m.chehab@samsung.com>
上级 4b2f1ed1
...@@ -886,7 +886,7 @@ static int isp_video_check_external_subdevs(struct isp_video *video, ...@@ -886,7 +886,7 @@ static int isp_video_check_external_subdevs(struct isp_video *video,
struct v4l2_ext_controls ctrls; struct v4l2_ext_controls ctrls;
struct v4l2_ext_control ctrl; struct v4l2_ext_control ctrl;
unsigned int i; unsigned int i;
int ret = 0; int ret;
/* Memory-to-memory pipelines have no external subdev. */ /* Memory-to-memory pipelines have no external subdev. */
if (pipe->input != NULL) if (pipe->input != NULL)
...@@ -909,7 +909,7 @@ static int isp_video_check_external_subdevs(struct isp_video *video, ...@@ -909,7 +909,7 @@ static int isp_video_check_external_subdevs(struct isp_video *video,
if (!source) { if (!source) {
dev_warn(isp->dev, "can't find source, failing now\n"); dev_warn(isp->dev, "can't find source, failing now\n");
return ret; return -EINVAL;
} }
if (media_entity_type(source) != MEDIA_ENT_T_V4L2_SUBDEV) if (media_entity_type(source) != MEDIA_ENT_T_V4L2_SUBDEV)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册