mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Steffen Trumtrar <s.trumtrar@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH] regulator: fixed: add always-on property
Date: Fri, 11 Jul 2014 09:56:51 +0200	[thread overview]
Message-ID: <20140711075651.GO23235@pengutronix.de> (raw)
In-Reply-To: <1404114716-27533-1-git-send-email-s.trumtrar@pengutronix.de>

On Mon, Jun 30, 2014 at 09:51:56AM +0200, Steffen Trumtrar wrote:
> Support the "regulator-always-on" property for fixed regulators.
> The regulator gets enabled on probe and subsequent disable calls are
> ignored.
> 
> Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>

Applied, thanks

Sascha

> ---
>  drivers/regulator/fixed.c | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/drivers/regulator/fixed.c b/drivers/regulator/fixed.c
> index 7e64919..2515d3e 100644
> --- a/drivers/regulator/fixed.c
> +++ b/drivers/regulator/fixed.c
> @@ -27,6 +27,7 @@
>  struct regulator_fixed {
>  	int gpio;
>  	int active_low;
> +	int always_on;
>  	struct regulator_dev rdev;
>  };
>  
> @@ -44,6 +45,9 @@ static int regulator_fixed_disable(struct regulator_dev *rdev)
>  {
>  	struct regulator_fixed *fix = container_of(rdev, struct regulator_fixed, rdev);
>  
> +	if (fix->always_on)
> +		return 0;
> +
>  	if (!gpio_is_valid(fix->gpio))
>  		return 0;
>  
> @@ -79,6 +83,11 @@ static int regulator_fixed_probe(struct device_d *dev)
>  
>  	fix->rdev.ops = &fixed_ops;
>  
> +	if (of_find_property(dev->device_node, "regulator-always-on", NULL)) {
> +		fix->always_on = 1;
> +		regulator_fixed_enable(&fix->rdev);
> +	}
> +
>  	ret = of_regulator_register(&fix->rdev, dev->device_node);
>  	if (ret)
>  		return ret;
> -- 
> 2.0.0
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

      reply	other threads:[~2014-07-11  7:57 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-30  7:51 Steffen Trumtrar
2014-07-11  7:56 ` Sascha Hauer [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=20140711075651.GO23235@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=s.trumtrar@pengutronix.de \
    /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