mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 19:43:40 +02:00
media: v4l2-core: v4l2-ioctl: missing ', ' in create_bufs logging
The v4l_print_create_buffers() function was missing a ', ' in the pr_cont call, leading to logs like this: [93293.533425] video0: VIDIOC_CREATE_BUFS: index=0, count=0, memory=dmabuf, capabilities=0x00000297, max num buffers=32type=vid-cap, width=0, height=0, pixelformat=.... little-endian (0x00000000), field=any, bytesperline=0, sizeimage=0, colorspace=0, flags=0x0, ycbcr_enc=0, quantization=0, xfer_func=0 Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Reviewed-by: Sebastian Fricke <sebastian.fricke@collabora.com>
This commit is contained in:
parent
911d561816
commit
2b9e67861b
|
|
@ -484,7 +484,7 @@ 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, capabilities=0x%08x, max num buffers=%u",
|
||||
pr_cont("index=%d, count=%d, memory=%s, capabilities=0x%08x, max num buffers=%u, ",
|
||||
p->index, p->count, prt_names(p->memory, v4l2_memory_names),
|
||||
p->capabilities, p->max_num_buffers);
|
||||
v4l_print_format(&p->format, write_only);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user