1
0
Fork 0
mirror of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git synced 2025-01-24 17:23:25 -05:00

media: v4l2-ioctl: print capabilities in v4l_print_create_buffers()

Print capabilities field from struct v4l2_create_buffers for better
debugging.

Signed-off-by: Helen Koike <helen.koike@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
Helen Koike 2021-01-14 19:01:47 +01:00 committed by Mauro Carvalho Chehab
parent 031b9212ee
commit 319c4bd41a

View file

@ -518,9 +518,9 @@ static void v4l_print_create_buffers(const void *arg, bool write_only)
{
const struct v4l2_create_buffers *p = arg;
pr_cont("index=%d, count=%d, memory=%s, ",
p->index, p->count,
prt_names(p->memory, v4l2_memory_names));
pr_cont("index=%d, count=%d, memory=%s, capabilities=0x%08x, ",
p->index, p->count, prt_names(p->memory, v4l2_memory_names),
p->capabilities);
v4l_print_format(&p->format, write_only);
}