Skip to content

Commit 5e78831

Browse files
hverkuilMauro Carvalho Chehab
authored andcommitted
[media] Add missing logging for rangelow/high of hwseek
struct v4l2_hw_freq_seek has two new fields that weren't printed in the logging function. Added. Signed-off-by: Hans Verkuil <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
1 parent aa4d9b5 commit 5e78831

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

drivers/media/video/v4l2-ioctl.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,8 +402,10 @@ static void v4l_print_hw_freq_seek(const void *arg, bool write_only)
402402
{
403403
const struct v4l2_hw_freq_seek *p = arg;
404404

405-
pr_cont("tuner=%u, type=%u, seek_upward=%u, wrap_around=%u, spacing=%u\n",
406-
p->tuner, p->type, p->seek_upward, p->wrap_around, p->spacing);
405+
pr_cont("tuner=%u, type=%u, seek_upward=%u, wrap_around=%u, spacing=%u, "
406+
"rangelow=%u, rangehigh=%u\n",
407+
p->tuner, p->type, p->seek_upward, p->wrap_around, p->spacing,
408+
p->rangelow, p->rangehigh);
407409
}
408410

409411
static void v4l_print_requestbuffers(const void *arg, bool write_only)

0 commit comments

Comments
 (0)