mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Nishad Kamdar <nishadkamdar@gmail.com>
To: Johan Hovold <johan@kernel.org>
Cc: Johan Hovold <johan@kernel.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Alex Elder <elder@kernel.org>,
	Rui Miguel Silva <rmfrfs@gmail.com>,
	greybus-dev@lists.linaro.org, devel@driverdev.osuosl.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v5 2/3] staging: greybus: arche-apb-ctrl.c: Switch to the gpio descriptor interface
Date: Sun, 13 Jan 2019 18:24:25 +0530	[thread overview]
Message-ID: <20190113125424.GB16542@nishad> (raw)
In-Reply-To: <20190111084134.GC3383@localhost>

On Fri, Jan 11, 2019 at 09:41:34AM +0100, Johan Hovold wrote:
> On Thu, Jan 10, 2019 at 11:21:04PM +0530, Nishad Kamdar wrote:
> > Use the gpiod interface instead of the deprecated old non-descriptor
> > interface while continuing to ignore gpio flags from device tree in
> > functions "deassert_reset()" and "assert_reset()" for now.
> > 
> > Signed-off-by: Nishad Kamdar <nishadkamdar@gmail.com>
> > ---
> > Changes in v5:
> >  - Change the commit message.
> >  - Restore the names of the gpio device-tree properties without
> >    the "-gpio" suffix.
> > Changes in v4:
> >  - Use gpiod_set_raw_value() for deassert_reset() and
> >    assert_reset() as gpiod_set_value() will change the
> >    sematics of these calls by taking any gpio flags
> >    into account.
> >  - Remove some unnecesssary line breaks.
> >  - Restore 'spi_en' gpio check in fw_flashing_seq()
> >    as it is currently optional.
> > Changes in v3:
> >  - Add this patch in a patchset.
> > Changes in v2:
> >  - Resolved compilation errors.
> > ---
> 
> Also looks good now. You can add my
> 
> Reviewed-by: Johan Hovold <johan@kernel.org>
> 
> Found one really minor nit below, which doesn't really need to be fixed,
> but since you may need to update the third patch, you might as well
> consider this too.
> 
Ok, I'll do that.
> >  	/* It's not mandatory to support power management interface */
> > -	apb->pwroff_gpio = of_get_named_gpio(np, "pwr-off-gpios", 0);
> > -	if (apb->pwroff_gpio < 0) {
> > -		dev_err(dev, "failed to get power off gpio\n");
> > -		return apb->pwroff_gpio;
> > -	}
> > -	ret = devm_gpio_request_one(dev, apb->pwroff_gpio,
> > -				    GPIOF_IN, "pwroff_n");
> > -	if (ret) {
> > -		dev_err(dev, "Failed requesting pwroff_n gpio %d\n",
> > -			apb->pwroff_gpio);
> > +	apb->pwroff = devm_gpiod_get_optional(dev, "pwr-off",
> > +					      GPIOD_IN);
> 
> Looks like you don't need to break the above statement any more either.
> 
> > +	if (IS_ERR(apb->pwroff)) {
> > +		ret = PTR_ERR(apb->pwroff);
> > +		dev_err(dev, "Failed requesting pwroff_n GPIO: %d\n", ret);
> >  		return ret;
> >  	}
> >  
> >  	/* Do not make clock mandatory as of now (for DB3) */
> > -	apb->clk_en_gpio = of_get_named_gpio(np, "clock-en-gpio", 0);
> > -	if (apb->clk_en_gpio < 0) {
> > -		dev_warn(dev, "failed to get clock en gpio\n");
> > -	} else if (gpio_is_valid(apb->clk_en_gpio)) {
> > -		ret = devm_gpio_request_one(dev, apb->clk_en_gpio,
> > -					    GPIOF_OUT_INIT_LOW, "apb_clk_en");
> > -		if (ret) {
> > -			dev_warn(dev, "Failed requesting APB clock en gpio %d\n",
> > -				 apb->clk_en_gpio);
> > -			return ret;
> > -		}
> > +	apb->clk_en = devm_gpiod_get_optional(dev, "clock-en",
> > +					      GPIOD_OUT_LOW);
> 
> Same here?
> 
Ok, I'll do that.

Thanks and regards,
Nishad
> > +	if (IS_ERR(apb->clk_en)) {
> > +		ret = PTR_ERR(apb->clk_en);
> > +		dev_err(dev, "Failed requesting APB clock en GPIO: %d\n", ret);
> > +		return ret;
> >  	}
> 
> Johan

  reply	other threads:[~2019-01-13 12:54 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-10 17:49 [PATCH v5 0/3] greybus: gpio: " Nishad Kamdar
2019-01-10 17:50 ` [PATCH v5 1/3] staging: greybus: gpio: switch GPIO portions to use GPIOLIB_IRQCHIP Nishad Kamdar
2019-01-10 17:54   ` Nishad Kamdar
2019-01-11  8:36   ` Johan Hovold
2019-01-10 17:51 ` [PATCH v5 2/3] staging: greybus: arche-apb-ctrl.c: Switch to the gpio descriptor interface Nishad Kamdar
2019-01-11  8:41   ` Johan Hovold
2019-01-13 12:54     ` Nishad Kamdar [this message]
2019-01-10 17:53 ` [PATCH v5 3/3] staging: greybus: arche-platform: " Nishad Kamdar
2019-01-11  8:48   ` Johan Hovold
2019-01-13 12:52     ` Nishad Kamdar

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=20190113125424.GB16542@nishad \
    --to=nishadkamdar@gmail.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=elder@kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=greybus-dev@lists.linaro.org \
    --cc=johan@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rmfrfs@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

all inboxes | Powered by JetHome®