Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5e788317 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

[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: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent aa4d9b53
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -402,8 +402,10 @@ static void v4l_print_hw_freq_seek(const void *arg, bool write_only)
{
{
	const struct v4l2_hw_freq_seek *p = arg;
	const struct v4l2_hw_freq_seek *p = arg;


	pr_cont("tuner=%u, type=%u, seek_upward=%u, wrap_around=%u, spacing=%u\n",
	pr_cont("tuner=%u, type=%u, seek_upward=%u, wrap_around=%u, spacing=%u, "
		p->tuner, p->type, p->seek_upward, p->wrap_around, p->spacing);
		"rangelow=%u, rangehigh=%u\n",
		p->tuner, p->type, p->seek_upward, p->wrap_around, p->spacing,
		p->rangelow, p->rangehigh);
}
}


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