linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: broonie@opensource.wolfsonmicro.com (Mark Brown)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] regulator: mc13783: consider Power Gates as digital regulators.
Date: Mon, 18 Jan 2010 16:32:12 +0000	[thread overview]
Message-ID: <20100118163212.GA32045@rakim.wolfsonmicro.main> (raw)
In-Reply-To: <1263830523.3632.22.camel@realization>

On Mon, Jan 18, 2010 at 05:02:03PM +0100, Alberto Panizzo wrote:

> +int mc13783_state_powermisc_pwgt;
> +int mc13783_reg_rmw_powermisc(struct mc13783 *mc13783, u32 mask, u32 val)

You're missing some statics here and some whitespace to separate the
function from the variable.

> +	/* Update the stored state for Power Gates.
> +	 * As from specs the meaning is inverted (0: en, 1: dis) */
> +	if (mask & MC13783_REG_POWERMISC_PWGTSPI_M)
> +		mc13783_state_powermisc_pwgt =
> +			(mc13783_state_powermisc_pwgt & ~mask) |
> +			((val ^ mask) & MC13783_REG_POWERMISC_PWGTSPI_M);

Could this code be written in a clearer fashion?  The bit manipluation
isn't entirely obvious, especially given the multiple masks in use...

> +	ret = mc13783_reg_read(mc13783, MC13783_REG_POWERMISC, &valread);
> +	if (ret)
> +		return ret;
> +
> +	valread = (valread & ~mask) | val;
> +
> +	/* Re propose the stored state for Power Gates */
> +	valread = (valread & ~MC13783_REG_POWERMISC_PWGTSPI_M) |
> +						mc13783_state_powermisc_pwgt;

...and this further mainpulation.

  reply	other threads:[~2010-01-18 16:32 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-01-18 16:02 [PATCH] regulator: mc13783: consider Power Gates as digital regulators Alberto Panizzo
2010-01-18 16:32 ` Mark Brown [this message]
2010-01-18 17:26   ` Alberto Panizzo
2010-01-18 17:37     ` Mark Brown
     [not found]   ` <1263834473.3632.31.camel@realization>
     [not found]     ` <20100118172002.GB6889@rakim.wolfsonmicro.main>
2010-01-18 17:50       ` Alberto Panizzo
2010-01-18 17:56         ` Mark Brown
2010-01-18 19:04 ` Uwe Kleine-König
2010-01-18 21:01   ` Alberto Panizzo
2010-01-19 10:26     ` Liam Girdwood
2010-01-19 11:12       ` Alberto Panizzo

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=20100118163212.GA32045@rakim.wolfsonmicro.main \
    --to=broonie@opensource.wolfsonmicro.com \
    --cc=linux-arm-kernel@lists.infradead.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;
as well as URLs for NNTP newsgroup(s).