media: ipu3-imgu: imgu_fmt: Handle properly try
For a try_fmt call, the node noes not need to be enabled. Fixes v4l2-compliance fail: v4l2-test-formats.cpp(717): Video Output Multiplanar is valid, but no TRY_FMT was implemented test VIDIOC_TRY_FMT: FAIL Signed-off-by: Ricardo Ribalda <ribalda@chromium.org> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
6c0f6c424f
commit
553481e380
|
@ -696,7 +696,7 @@ static int imgu_fmt(struct imgu_device *imgu, unsigned int pipe, int node,
|
|||
|
||||
/* CSS expects some format on OUT queue */
|
||||
if (i != IPU3_CSS_QUEUE_OUT &&
|
||||
!imgu_pipe->nodes[inode].enabled) {
|
||||
!imgu_pipe->nodes[inode].enabled && !try) {
|
||||
fmts[i] = NULL;
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue