From: Lubomir Rintel <lkundrak@v3.sk>
To: Adam Sampson <ats@offog.org>, Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org
Subject: Re: [PATCH] media: usbtv: fix brightness and contrast controls
Date: Wed, 25 Oct 2017 08:50:50 +0200 [thread overview]
Message-ID: <1508914250.6059.0.camel@v3.sk> (raw)
In-Reply-To: <20171024201446.30021-1-ats@offog.org>
On Tue, 2017-10-24 at 21:14 +0100, Adam Sampson wrote:
> Because the brightness and contrast controls share a register,
> usbtv_s_ctrl needs to read the existing values for both controls
> before
> inserting the new value. However, the code accidentally wrote to the
> registers (from an uninitialised stack array), rather than reading
> them.
>
> The user-visible effect of this was that adjusting the brightness
> would
> also set the contrast to a random value, and vice versa -- so it
> wasn't
> possible to correctly adjust the brightness of usbtv's video output.
>
> Tested with an "EasyDAY" UTV007 device.
>
> Fixes: c53a846c48f2 ("usbtv: add video controls")
> Signed-off-by: Adam Sampson <ats@offog.org>
Thank you!
Reviewed-By: Lubomir Rintel <lkundrak@v3.sk>
> ---
> drivers/media/usb/usbtv/usbtv-video.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/media/usb/usbtv/usbtv-video.c
> b/drivers/media/usb/usbtv/usbtv-video.c
> index 95b5f43..3668a04 100644
> --- a/drivers/media/usb/usbtv/usbtv-video.c
> +++ b/drivers/media/usb/usbtv/usbtv-video.c
> @@ -718,8 +718,8 @@ static int usbtv_s_ctrl(struct v4l2_ctrl *ctrl)
> */
> if (ctrl->id == V4L2_CID_BRIGHTNESS || ctrl->id ==
> V4L2_CID_CONTRAST) {
> ret = usb_control_msg(usbtv->udev,
> - usb_sndctrlpipe(usbtv->udev, 0),
> USBTV_CONTROL_REG,
> - USB_DIR_OUT | USB_TYPE_VENDOR |
> USB_RECIP_DEVICE,
> + usb_rcvctrlpipe(usbtv->udev, 0),
> USBTV_CONTROL_REG,
> + USB_DIR_IN | USB_TYPE_VENDOR |
> USB_RECIP_DEVICE,
> 0, USBTV_BASE + 0x0244, (void *)data, 3, 0);
> if (ret < 0)
> goto error;
prev parent reply other threads:[~2017-10-25 6:50 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-24 20:14 [PATCH] media: usbtv: fix brightness and contrast controls Adam Sampson
2017-10-25 6:50 ` Lubomir Rintel [this message]
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=1508914250.6059.0.camel@v3.sk \
--to=lkundrak@v3.sk \
--cc=ats@offog.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
/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