public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
From: Hans Verkuil <hverkuil@xs4all.nl>
To: Andy Walls <awalls@md.metrocast.net>
Cc: Rajil Saraswat <rajil.s@gmail.com>, linux-media@vger.kernel.org
Subject: Re: ivtv 1.4.2/1.4.3 broken in recent kernels?
Date: Mon, 04 Nov 2013 13:44:29 +0100	[thread overview]
Message-ID: <527796AD.2000000@xs4all.nl> (raw)
In-Reply-To: <1382202581.2405.5.camel@palomino.walls.org>

On 10/19/2013 07:09 PM, Andy Walls wrote:
> On Wed, 2013-10-16 at 01:10 +0100, Rajil Saraswat wrote:
>> I was finally able to carry out a git bisect. Had to do a git pull on
>> a fast internet hooked machine and ftp the files over to the remote
>> machine.
>>
>> I started with 'git bisect bad v2.6.36.4' and 'git bisect good v2.6.35.10'.
>>
>> And the result was:
>>
>> 5aa9ae5ed5d449a85fbf7aac3d1fdc241c542a79 is the first bad commit
>> commit 5aa9ae5ed5d449a85fbf7aac3d1fdc241c542a79
>> Author: Hans Verkuil <hverkuil@xs4all.nl>
>> Date:   Sat Apr 24 08:23:53 2010 -0300
>>
>>     V4L/DVB: wm8775: convert to the new control framework
>>
>>     Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
>>     Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
>>
>> :040000 040000 37847ffe592f255c6a9d9daedaf7bbfd3cd7b055
>> 2f094df6f65d7fb296657619c1ad6f93fe085a75 M    drivers
>>
>> I then removed the patch from linux-2.6.36-gentoo-r8 which are gentoo
>> sources, and confirmed that video/audio now works fine on v4l2-ctl -d
>> /dev/video1 --set-input 4
>>
>> I wasnt able to remove the patch in 3.10.7 which is gentoo stable
>> kernel. Any idea how can i do that?
> 
> Try applying the following (untested) patch that is made against the
> bleeding edge Linux kernel.  The test on the mute control state in
> wm8775_s_routing() appears to have been inverted in the bad commit you
> isolated.

Aargh! I'm pretty sure that's the culprit. Man, that's been broken for ages.
I'll see if I can test this patch this week.

Regards,

	Hans

> Along with '--set-input', you may also want to use v4l2-ctl to exercise
> the mute control as well, to see if it works as expected, once this
> patch is applied.
> 
> Regards,
> Andy
> 
> file: wm8775_s_route_mute_test_inverted.patch
> 
> diff --git a/drivers/media/i2c/wm8775.c b/drivers/media/i2c/wm8775.c
> index 3f584a7..bee7946 100644
> --- a/drivers/media/i2c/wm8775.c
> +++ b/drivers/media/i2c/wm8775.c
> @@ -130,12 +130,10 @@ static int wm8775_s_routing(struct v4l2_subdev *sd,
>  		return -EINVAL;
>  	}
>  	state->input = input;
> -	if (!v4l2_ctrl_g_ctrl(state->mute))
> +	if (v4l2_ctrl_g_ctrl(state->mute))
>  		return 0;
>  	if (!v4l2_ctrl_g_ctrl(state->vol))
>  		return 0;
> -	if (!v4l2_ctrl_g_ctrl(state->bal))
> -		return 0;
>  	wm8775_set_audio(sd, 1);
>  	return 0;
>  }
> 
> 


  parent reply	other threads:[~2013-11-04 12:44 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-17 20:49 ivtv 1.4.2/1.4.3 broken in recent kernels? Rajil Saraswat
2013-09-30 11:33 ` Hans Verkuil
2013-10-05 13:10   ` Rajil Saraswat
     [not found]     ` <CAFoaQoDS6LUKNQ7dHF1s1Ms_YuS98mZzrhXRjLLarHHUxsSxMQ@mail.gmail.com>
2013-10-07 15:01       ` Rajil Saraswat
2013-10-10  2:20 ` Andy Walls
2013-10-10 21:00   ` Rajil Saraswat
2013-10-12 23:23     ` Andy Walls
2013-10-13 12:49       ` Andy Walls
2013-10-13 19:14         ` Rajil Saraswat
2013-10-13 23:43           ` Andy Walls
2013-10-16  0:10             ` Rajil Saraswat
2013-10-19 17:09               ` Andy Walls
2013-10-20 17:47                 ` Rajil Saraswat
2013-11-04 12:44                 ` Hans Verkuil [this message]
2013-11-06  0:25                   ` Andy Walls
2013-11-11 11:07                     ` Hans Verkuil
2013-11-11 11:14                 ` Hans Verkuil
2013-11-11 13:42                   ` Andy Walls

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=527796AD.2000000@xs4all.nl \
    --to=hverkuil@xs4all.nl \
    --cc=awalls@md.metrocast.net \
    --cc=linux-media@vger.kernel.org \
    --cc=rajil.s@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox