From: Hans de Goede <hdegoede@redhat.com>
To: Andy Walls <awalls@md.metrocast.net>
Cc: linux-media@vger.kernel.org, Jean-Francois Moine <moinejf@free.fr>
Subject: Re: [PATCH v2 3/3] gspca_cpia1: Disable illuminator controls if not an Intel Play QX3
Date: Mon, 13 Sep 2010 09:19:22 +0200 [thread overview]
Message-ID: <4C8DD07A.5070308@redhat.com> (raw)
In-Reply-To: <1284313521.2027.32.camel@morgan.silverblock.net>
Ack,
Acked-by: Hans de Goede <hdegoede@redhat.com>
p.s.
Jean-Francois, since your tree also has the needed videodev2.h changes I assume
you'll take these patches in your tree and thus I won't add them to mine.
Regards,
Hans
On 09/12/2010 07:45 PM, Andy Walls wrote:
> The illuminator controls should only be available to the user for the Intel
> Play QX3 microscope. The implementation to inhibit the controls is intended to
> be consistent with the other gspca driver implementations.
>
> Signed-off-by: Andy Walls<awalls@md.metrocast.net>
>
> diff -r 5e576066eeaf -r 8a9732bd1548 linux/drivers/media/video/gspca/cpia1.c
> --- a/linux/drivers/media/video/gspca/cpia1.c Sun Sep 12 12:47:00 2010 -0400
> +++ b/linux/drivers/media/video/gspca/cpia1.c Sun Sep 12 13:13:33 2010 -0400
> @@ -380,6 +380,7 @@
>
> static const struct ctrl sd_ctrls[] = {
> {
> +#define BRIGHTNESS_IDX 0
> {
> .id = V4L2_CID_BRIGHTNESS,
> .type = V4L2_CTRL_TYPE_INTEGER,
> @@ -394,6 +395,7 @@
> .set = sd_setbrightness,
> .get = sd_getbrightness,
> },
> +#define CONTRAST_IDX 1
> {
> {
> .id = V4L2_CID_CONTRAST,
> @@ -408,6 +410,7 @@
> .set = sd_setcontrast,
> .get = sd_getcontrast,
> },
> +#define SATURATION_IDX 2
> {
> {
> .id = V4L2_CID_SATURATION,
> @@ -422,6 +425,7 @@
> .set = sd_setsaturation,
> .get = sd_getsaturation,
> },
> +#define POWER_LINE_FREQUENCY_IDX 3
> {
> {
> .id = V4L2_CID_POWER_LINE_FREQUENCY,
> @@ -436,6 +440,7 @@
> .set = sd_setfreq,
> .get = sd_getfreq,
> },
> +#define ILLUMINATORS_1_IDX 4
> {
> {
> .id = V4L2_CID_ILLUMINATORS_1,
> @@ -450,6 +455,7 @@
> .set = sd_setilluminator1,
> .get = sd_getilluminator1,
> },
> +#define ILLUMINATORS_2_IDX 5
> {
> {
> .id = V4L2_CID_ILLUMINATORS_2,
> @@ -464,6 +470,7 @@
> .set = sd_setilluminator2,
> .get = sd_getilluminator2,
> },
> +#define COMP_TARGET_IDX 6
> {
> {
> #define V4L2_CID_COMP_TARGET V4L2_CID_PRIVATE_BASE
> @@ -1756,9 +1763,13 @@
> if (ret)
> return ret;
>
> - /* Ensure the QX3 illuminators' states are restored upon resume */
> + /* Ensure the QX3 illuminators' states are restored upon resume,
> + or disable the illuminator controls, if this isn't a QX3 */
> if (sd->params.qx3.qx3_detected)
> command_setlights(gspca_dev);
> + else
> + gspca_dev->ctrl_dis |=
> + ((1<< ILLUMINATORS_1_IDX) | (1<< ILLUMINATORS_2_IDX));
>
> sd_stopN(gspca_dev);
>
>
>
>
>
>
>
>
>
prev parent reply other threads:[~2010-09-13 7:19 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-12 17:45 [PATCH v2 3/3] gspca_cpia1: Disable illuminator controls if not an Intel Play QX3 Andy Walls
2010-09-13 7:19 ` Hans de Goede [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=4C8DD07A.5070308@redhat.com \
--to=hdegoede@redhat.com \
--cc=awalls@md.metrocast.net \
--cc=linux-media@vger.kernel.org \
--cc=moinejf@free.fr \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.