public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Chanwoo Choi <cw00.choi@samsung.com>
To: Lee Jones <lee.jones@linaro.org>
Cc: sbkim73@samsung.com, sameo@linux.intel.com,
	k.kozlowski@samsung.com, myungjoo.ham@samsung.com,
	kyungmin.park@samsung.com, linux-kernel@vger.kernel.org
Subject: Re: [PATCHv5 1/3] mfd: sec-core: Add support for S2MPU02 device
Date: Tue, 17 Jun 2014 09:18:41 +0900	[thread overview]
Message-ID: <539F8961.3070009@samsung.com> (raw)
In-Reply-To: <20140616130306.GU14323@lee--X1>

Hi Lee,

On 06/16/2014 10:03 PM, Lee Jones wrote:
> On Mon, 16 Jun 2014, Chanwoo Choi wrote:
> 
>> Add support for Samsung S2MPU02 PMIC device to the MFD sec-core driver.
>> The S2MPU02 device includes PMIC/RTC/Clock devices.
>>
>> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
>> Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
>> ---
>>  drivers/mfd/sec-core.c           | 19 +++++++++
>>  drivers/mfd/sec-irq.c            | 88 ++++++++++++++++++++++++++++++++++++++++
>>  include/linux/mfd/samsung/core.h |  1 +
>>  include/linux/mfd/samsung/irq.h  | 24 +++++++++++
>>  4 files changed, 132 insertions(+)
>>
>> diff --git a/drivers/mfd/sec-core.c b/drivers/mfd/sec-core.c
>> index be06d0a..5e8784b 100644
>> --- a/drivers/mfd/sec-core.c
>> +++ b/drivers/mfd/sec-core.c
>> @@ -89,6 +89,17 @@ static const struct mfd_cell s2mpa01_devs[] = {
>>  	},
>>  };
>>  
>> +static const struct mfd_cell s2mpu02_devs[] = {
>> +	{
>> +		.name = "s2mpu02-pmic",
>> +	}, {
>> +		.name = "s2mpu02-rtc",
> 
> Make these two one liners, so:
> 
>   { .name = "s2mpu02-pmic" },
>   { .name = "s2mpu02-rtc" ),

OK, I'll modify it.

> 
>> +	}, {
>> +		.name = "s2mpu02-clk",
>> +		.of_compatible = "samsung,s2mpu02-clk",
>> +	}
>> +};
>> +
>>  #ifdef CONFIG_OF
>>  static const struct of_device_id sec_dt_match[] = {
>>  	{	.compatible = "samsung,s5m8767-pmic",
>> @@ -103,6 +114,9 @@ static const struct of_device_id sec_dt_match[] = {
>>  		.compatible = "samsung,s2mpa01-pmic",
>>  		.data = (void *)S2MPA01,
>>  	}, {
>> +		.compatible = "samsung,s2mpu02-pmic",
>> +		.data = (void *)S2MPU02,
>> +	}, {
>>  		/* Sentinel */
>>  	},
>>  };
>> @@ -342,6 +356,11 @@ static int sec_pmic_probe(struct i2c_client *i2c,
>>  		ret = mfd_add_devices(sec_pmic->dev, -1, s2mps14_devs,
>>  				      ARRAY_SIZE(s2mps14_devs), NULL, 0, NULL);
>>  		break;
>> +	case S2MPU02:
>> +		ret = mfd_add_devices(sec_pmic->dev, -1, s2mpu02_devs,
>> +				      ARRAY_SIZE(s2mpu02_devs), NULL, 0, NULL);
>> +		break;
> 
> This is a bit bonkers.  Instead of passing S2MPU02, why don't you pass
> a new container which holds s2mpu02_devs and s2mpu02_irq_chip, then
> you won't need new mfd_add_devices() and regmap_add_irq_chip() calls
> for every device you want to support.

OK, I'll remove duplicate code of mfd_add_devices() and regmap_add_irq_chip().

Best Regards,
Chanwoo Choi







  reply	other threads:[~2014-06-17  0:18 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-16  4:42 [PATCHv5 0/3] mfd: sec-core: Add support S2MPU02 PMIC device Chanwoo Choi
2014-06-16  4:42 ` [PATCHv5 1/3] mfd: sec-core: Add support for S2MPU02 device Chanwoo Choi
2014-06-16 13:03   ` Lee Jones
2014-06-17  0:18     ` Chanwoo Choi [this message]
2014-06-16  4:42 ` [PATCHv5 2/3] regulator: s2mps11: Add support S2MPU02 regulator device Chanwoo Choi
2014-06-16 13:19   ` Lee Jones
2014-06-16 23:41     ` Chanwoo Choi
2014-06-16  4:42 ` [PATCHv5 3/3] dt-bindings: mfd: s2mps11: Add support S2MPU02 PMIC Chanwoo Choi

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=539F8961.3070009@samsung.com \
    --to=cw00.choi@samsung.com \
    --cc=k.kozlowski@samsung.com \
    --cc=kyungmin.park@samsung.com \
    --cc=lee.jones@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=myungjoo.ham@samsung.com \
    --cc=sameo@linux.intel.com \
    --cc=sbkim73@samsung.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