Commit f823ce2a authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

media: em28xx: use a default format if TRY_FMT fails

Follow the V4L2 spec, as warned by v4l2-compliance:

	warn: v4l2-test-formats.cpp(732): TRY_FMT cannot handle an invalid pixelformat.
	warn: v4l2-test-formats.cpp(733): This may or may not be a problem. For more information see:

warn: v4l2-test-formats.cpp(734): http://www.mail-archive.com/linux-media@vger.kernel.org/msg56550.html

Cc: stable@vger.kernel.org
Fixes: bddcf633 ("V4L/DVB (9927): em28xx: use a more standard way to specify video formats")
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 258c4304
...@@ -1471,9 +1471,9 @@ static int vidioc_try_fmt_vid_cap(struct file *file, void *priv, ...@@ -1471,9 +1471,9 @@ static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
fmt = format_by_fourcc(f->fmt.pix.pixelformat); fmt = format_by_fourcc(f->fmt.pix.pixelformat);
if (!fmt) { if (!fmt) {
em28xx_videodbg("Fourcc format (%08x) invalid.\n", fmt = &format[0];
f->fmt.pix.pixelformat); em28xx_videodbg("Fourcc format (%08x) invalid. Using default (%08x).\n",
return -EINVAL; f->fmt.pix.pixelformat, fmt->fourcc);
} }
if (dev->board.is_em2800) { if (dev->board.is_em2800) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment