From: Keerthy <a0393675@ti.com>
To: Lee Jones <lee.jones@linaro.org>
Cc: Keerthy <j-keerthy@ti.com>,
linux-omap@vger.kernel.org, lgirdwood@gmail.com,
broonie@kernel.org, linux-kernel@vger.kernel.org,
sameo@linux.intel.com
Subject: Re: [PATCH 4/5] mfd: palmas: Add tps65917 support
Date: Tue, 27 May 2014 14:09:24 +0530 [thread overview]
Message-ID: <53844F3C.9040507@ti.com> (raw)
In-Reply-To: <20140527083804.GB5875@lee--X1>
On Tuesday 27 May 2014 02:08 PM, Lee Jones wrote:
> On Mon, 26 May 2014, Keerthy wrote:
>
>> Add tps65917 PMIC support. tps65917 is a subset of palmas PMIC.
>> Some of the register definitions and the interrupt mappings
>> are different.
>>
>> Signed-off-by: Keerthy <j-keerthy@ti.com>
>> ---
>> drivers/mfd/palmas.c | 177 ++++++++++++++++++++++++++++++++++++++++++++++++--
> Much nicer. You just saved yourself(/the subsystem) 420 lines!
>
> I have a single nit. Once it's fixed-up you can apply my:
>
> Acked-by: Lee Jones <lee.jones@linaro.org>
Thanks.
>
>> 1 file changed, 172 insertions(+), 5 deletions(-)
>>
>> diff --git a/drivers/mfd/palmas.c b/drivers/mfd/palmas.c
>> index d280d78..e4684cc 100644
>> --- a/drivers/mfd/palmas.c
>> +++ b/drivers/mfd/palmas.c
> [...]
>
>> static const struct of_device_id of_palmas_match_tbl[] = {
>> {
>> .compatible = "ti,palmas",
>> - .data = &palmas_features,
>> + .data = &palmas_data,
>> },
>> {
>> .compatible = "ti,tps659038",
>> - .data = &tps659038_features,
>> + .data = &tps659038_data,
>> },
>> + {
>> + .compatible = "ti,tps65917",
>> + .data = &tps65917_data,
>> + },
>> +
> Please get rid of this line.
Oops. I will knock off this line and submit.
>> { },
>> };
>> MODULE_DEVICE_TABLE(of, of_palmas_match_tbl);
WARNING: multiple messages have this Message-ID (diff)
From: Keerthy <a0393675@ti.com>
To: Lee Jones <lee.jones@linaro.org>
Cc: Keerthy <j-keerthy@ti.com>, <linux-omap@vger.kernel.org>,
<lgirdwood@gmail.com>, <broonie@kernel.org>,
<linux-kernel@vger.kernel.org>, <sameo@linux.intel.com>
Subject: Re: [PATCH 4/5] mfd: palmas: Add tps65917 support
Date: Tue, 27 May 2014 14:09:24 +0530 [thread overview]
Message-ID: <53844F3C.9040507@ti.com> (raw)
In-Reply-To: <20140527083804.GB5875@lee--X1>
On Tuesday 27 May 2014 02:08 PM, Lee Jones wrote:
> On Mon, 26 May 2014, Keerthy wrote:
>
>> Add tps65917 PMIC support. tps65917 is a subset of palmas PMIC.
>> Some of the register definitions and the interrupt mappings
>> are different.
>>
>> Signed-off-by: Keerthy <j-keerthy@ti.com>
>> ---
>> drivers/mfd/palmas.c | 177 ++++++++++++++++++++++++++++++++++++++++++++++++--
> Much nicer. You just saved yourself(/the subsystem) 420 lines!
>
> I have a single nit. Once it's fixed-up you can apply my:
>
> Acked-by: Lee Jones <lee.jones@linaro.org>
Thanks.
>
>> 1 file changed, 172 insertions(+), 5 deletions(-)
>>
>> diff --git a/drivers/mfd/palmas.c b/drivers/mfd/palmas.c
>> index d280d78..e4684cc 100644
>> --- a/drivers/mfd/palmas.c
>> +++ b/drivers/mfd/palmas.c
> [...]
>
>> static const struct of_device_id of_palmas_match_tbl[] = {
>> {
>> .compatible = "ti,palmas",
>> - .data = &palmas_features,
>> + .data = &palmas_data,
>> },
>> {
>> .compatible = "ti,tps659038",
>> - .data = &tps659038_features,
>> + .data = &tps659038_data,
>> },
>> + {
>> + .compatible = "ti,tps65917",
>> + .data = &tps65917_data,
>> + },
>> +
> Please get rid of this line.
Oops. I will knock off this line and submit.
>> { },
>> };
>> MODULE_DEVICE_TABLE(of, of_palmas_match_tbl);
next prev parent reply other threads:[~2014-05-27 8:39 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-26 9:56 [PATCH 0/5] tps65917: Add support for for TPS65917 PMIC Keerthy
2014-05-26 9:56 ` Keerthy
2014-05-26 9:56 ` [PATCH 1/5] mfd: Add DT bindings for tps65917 PMIC Keerthy
2014-05-26 9:56 ` Keerthy
2014-05-26 9:56 ` [PATCH 2/5] Regulators: Add TPS65917 Bindings Keerthy
2014-05-26 9:56 ` Keerthy
2014-05-26 9:56 ` [PATCH 3/5] mfd: palmas: Add tps65917 specific definitions and enums Keerthy
2014-05-26 9:56 ` Keerthy
2014-05-27 8:41 ` Lee Jones
2014-05-27 8:41 ` Lee Jones
2014-05-27 8:43 ` Keerthy
2014-05-27 8:43 ` Keerthy
2014-05-26 9:56 ` [PATCH 4/5] mfd: palmas: Add tps65917 support Keerthy
2014-05-26 9:56 ` Keerthy
2014-05-27 8:38 ` Lee Jones
2014-05-27 8:39 ` Keerthy [this message]
2014-05-27 8:39 ` Keerthy
2014-05-26 9:56 ` [PATCH 5/5] regulator: tps65917: Add Regulator driver for tps65917 PMIC Keerthy
2014-05-26 9:56 ` Keerthy
2014-05-26 15:00 ` Mark Brown
2014-05-27 3:22 ` Keerthy
2014-05-27 3:22 ` Keerthy
2014-05-27 8:30 ` Lee Jones
2014-05-27 8:30 ` Lee Jones
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=53844F3C.9040507@ti.com \
--to=a0393675@ti.com \
--cc=broonie@kernel.org \
--cc=j-keerthy@ti.com \
--cc=lee.jones@linaro.org \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--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.