All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chanwoo Choi <cw00.choi@samsung.com>
To: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: sameo@linux.intel.com, myungjoo.ham@samsung.com,
	kyungmin.park@samsung.com, jonghwa3.lee@samsung.com,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 1/2] MFD: MAX77693: add MAX77693 MFD driver
Date: Mon, 14 May 2012 19:08:03 +0900	[thread overview]
Message-ID: <4FB0D983.4050404@samsung.com> (raw)
In-Reply-To: <20120514091917.GJ31985@opensource.wolfsonmicro.com>

Hi Mark,

On 05/14/2012 06:19 PM, Mark Brown wrote:

> On Mon, May 14, 2012 at 02:20:30PM +0900, Chanwoo Choi wrote:
> 
>> Signef-off-by: Chanwoo Choi <cw00.choi@samsung.com>
> 
> Typo :)
> 
>> +int max77693_read_reg(struct regmap *map, u8 reg, u8 *dest)
>> +{
>> +	unsigned int val;
>> +	int ret;
>> +
>> +	ret = regmap_read(map, reg, &val);
>> +	val &= 0xff;
>> +	*dest = val;
> 
> Should be no need for the val &= 0xff - if there is there's a bug we
> ought to fix in regmap.
> 
>> +int max77693_update_reg(struct regmap *map, u8 reg, u8 val, u8 mask)
>> +{
>> +	unsigned int old_val, new_val;
>> +	int ret;
>> +
>> +	ret = regmap_read(map, reg, &old_val);
>> +	old_val &= 0xff;
>> +	new_val = (val & mask) | (old_val & (~mask));
>> +	ret = regmap_write(map, reg, new_val);
> 
> This should be using regmap_update_bits(), the current code is buggy as
> it does not lock which means that multiple simultaneous updaters could
> conflict with each other.
> 
>> +static struct regmap_config max77693_regmap_config = {
>> +	.reg_bits = 8,
>> +	.val_bits = 8,
> 
> Defining max_register would let you see the register map in debugfs but
> this is optional.
> 
>> +	max77693->regmap = regmap_init_i2c(i2c, &max77693_regmap_config);
>> +	if (IS_ERR(max77693->regmap)) {
> 
> devm_regmap_init_i2c().


I modify all of it according of your comment.

Thank you for your comment.

Best Regards,
Chanwoo Choi

      reply	other threads:[~2012-05-14 10:08 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-14  5:20 [PATCH v3 1/2] MFD: MAX77693: add MAX77693 MFD driver Chanwoo Choi
2012-05-14  9:19 ` Mark Brown
2012-05-14 10:08   ` Chanwoo Choi [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=4FB0D983.4050404@samsung.com \
    --to=cw00.choi@samsung.com \
    --cc=broonie@opensource.wolfsonmicro.com \
    --cc=jonghwa3.lee@samsung.com \
    --cc=kyungmin.park@samsung.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=myungjoo.ham@samsung.com \
    --cc=sameo@linux.intel.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 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.