All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: linux-sh@vger.kernel.org
Subject: Re: [PATCH/RFT 6/7] media: adv7604: automatic "default-input" selection
Date: Mon, 19 Oct 2015 22:23:57 +0000	[thread overview]
Message-ID: <56256D7D.7040309@cogentembedded.com> (raw)
In-Reply-To: <1445263660-6945-7-git-send-email-ulrich.hecht+renesas@gmail.com>

Hello.

On 10/19/2015 05:07 PM, Ulrich Hecht wrote:

> From: William Towle <william.towle@codethink.co.uk>
>
> Add logic such that the "default-input" property becomes unnecessary
> for chips that only have one suitable input (ADV7611 by design, and
> ADV7612 due to commit 7111cddd "[media] media: adv7604: reduce support
> to first (digital) input").
>
> Additionally, Ian's documentation in commit bf9c8227 ("[media] media:
> adv7604: ability to read default input port from DT") states that the
> "default-input" property should reside directly in the node for
> adv7612. Hence, also adjust the parsing to make the implementation
> consistent with this.
>
> Signed-off-by: William Towle <william.towle@codethink.co.uk>
> Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com>
> ---
>   drivers/media/i2c/adv7604.c | 25 ++++++++++++++++++-------
>   1 file changed, 18 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/media/i2c/adv7604.c b/drivers/media/i2c/adv7604.c
> index 5631ec0..5bd81bd 100644
> --- a/drivers/media/i2c/adv7604.c
> +++ b/drivers/media/i2c/adv7604.c
> @@ -2799,7 +2799,7 @@ static int adv76xx_parse_dt(struct adv76xx_state *state)
>   	struct device_node *endpoint;
>   	struct device_node *np;
>   	unsigned int flags;
> -	u32 v;
> +	u32 v= -1;

    Nit: need spaces on both sides of =. :-)

[...]
> @@ -2809,14 +2809,25 @@ static int adv76xx_parse_dt(struct adv76xx_state *state)
>   		return -EINVAL;
>
>   	v4l2_of_parse_endpoint(endpoint, &bus_cfg);
> -
> -	if (!of_property_read_u32(endpoint, "default-input", &v))
> -		state->pdata.default_input = v;
> -	else
> -		state->pdata.default_input = -1;
> -
>   	of_node_put(endpoint);
>
> +	if (of_property_read_u32(np, "default-input", &v)) {
> +		/* not specified ... can we choose automatically? */
> +		switch (state->info->type) {
> +		case ADV7611:
> +			v = 0;
> +			break;
> +		case ADV7612:
> +			if (state->info->max_port
> +					= ADV76XX_PAD_HDMI_PORT_A)

    Hm, doubtful line breaking style -- I'd prefer having = on the first line.
Maybe it contradicts to this driver's style, though...

[...]

MBR, Sergei


      reply	other threads:[~2015-10-19 22:23 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-19 14:07 [PATCH/RFT 6/7] media: adv7604: automatic "default-input" selection Ulrich Hecht
2015-10-19 22:23 ` Sergei Shtylyov [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=56256D7D.7040309@cogentembedded.com \
    --to=sergei.shtylyov@cogentembedded.com \
    --cc=linux-sh@vger.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 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.