linux-iio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Naveen Krishna Ch <naveenkrishna.ch@gmail.com>
Cc: Lars-Peter Clausen <lars@metafoo.de>,
	Naveen Krishna Chatradhi <ch.naveen@samsung.com>,
	linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org,
	"linux-samsung-soc@vger.kernel.org"
	<linux-samsung-soc@vger.kernel.org>,
	dianders@chromium.org, gregkh@linuxfoundation.org
Subject: Re: [PATCH v7] iio: adc: add exynos adc driver under iio framwork
Date: Sun, 03 Mar 2013 12:16:34 +0000	[thread overview]
Message-ID: <51333F22.70702@kernel.org> (raw)
In-Reply-To: <CAHfPSqABgb8P5js8hz2_Xr2vXQ0F3OkTi2B7jZTqiDg_H6Uo4g@mail.gmail.com>

On 02/15/2013 01:35 PM, Naveen Krishna Ch wrote:
> On 15 February 2013 18:56, Lars-Peter Clausen <lars@metafoo.de> wrote:
>> On 02/15/2013 02:17 PM, Naveen Krishna Ch wrote:
>>> On 15 February 2013 18:43, Lars-Peter Clausen <lars@metafoo.de> wrote:
>>>> On 02/15/2013 07:56 AM, Naveen Krishna Chatradhi wrote:
>>>>> This patch adds New driver to support:
>>>>> 1. Supports ADC IF found on EXYNOS4412/EXYNOS5250
>>>>>    and future SoCs from Samsung
>>>>> 2. Add ADC driver under iio/adc framework
>>>>> 3. Also adds the Documentation for device tree bindings
>>>>>
>>>>> Signed-off-by: Naveen Krishna Chatradhi <ch.naveen@samsung.com>
>>>>
>>>> Looks good.
>>>>
>>>> Reviewed-by: Lars-Peter Clausen <lars@metafoo.de>
Applied to togreg branch of iio.git

Thanks,

>>>>
>>>> One minor thing though, there are a couple of places where you break a line
>>>> into multiple lines, even though the line fits easily inside the 80 chars
>>>> per line limit. In my opinion this doesn't help the legibility of the code.
>>>> E.g.:
>>>>
>>>> +       info->value = readl(ADC_V1_DATX(info->regs)) &
>>>> +                                               ADC_DATX_MASK;
>>>>
>>>> There is no need to respin the patch just for this, but if you happen to
>>>> make another version of the patch, that's something to consider.
>>>>
>>>>> ---
>>>>> Changes since v1:
>>>>>
>>>>> 1. Fixed comments from Lars
>>>>> 2. Added support for ADC on EXYNOS5410
>>>>>
>>>>> Changes since v2:
>>>>>
>>>>> 1. Changed the instance name for (struct iio_dev *) to indio_dev
>>>>> 2. Changed devm_request_irq to request_irq
>>>>>
>>>>> Few doubts regarding the mappings and child device handling.
>>>>> Kindly, suggest me better methods.
>>>>>
>>>>> Changes since v3:
>>>>>
>>>>> 1. Added clk_prepare_disable and regulator_disable calls in _remove()
>>>>> 2. Moved init_completion before irq_request
>>>>> 3. Added NULL pointer check for devm_request_and_ioremap() return value.
>>>>> 4. Use number of channels as per the ADC version
>>>>> 5. Change the define ADC_V1_CHANNEL to ADC_CHANNEL
>>>>> 6. Update the Documentation to include EXYNOS5410 compatible
>>>>>
>>>>> Changes since v4:
>>>>>
>>>>> 1. if devm_request_and_ioremap() failes, free iio_device before returning
>>>>>
>>>>> Changes since v5:
>>>>>
>>>>> 1. Fixed comments from Olof (ADC hardware version handling)
>>>>> 2. Rebased on top of comming OF framework for IIO by "Guenter Roeck".
>>>>>
>>>>> Changes since v6:
>>>>>
>>>>> 1. Addressed comments from Lars-Peter Clausen
>>>>
>>>>
>>>> btw. these kind of change logs are not really helpful, it would be better to
>>>> list the actual changes made.
>>> Hello Lars,
>>>
>>> No other changes from my side. But, I can send another version.
>>> Do you want me to list the latest change alone instead of the whole
>>> change list ?
>>
>> Hi,
>>
>> No need to resend the patch, this is just something to consider for the
>> future. A changelog entry which reads like "Addressed Jon Does comments" is
>> not really useful since most people will probably not know or not longer
>> remember all the details of those comments, instead a nice list of all the
>> changes which have been made is much better. E.g.:
>>
>> Changes since v6:
>>         * Fixed debugfs_read_reg
>>         * Introduced timeout when waiting for the data ready IRQ
>>         * Slightly reformatted exynos_read_raw for better legibility
>>
>> - Lars
> 
> Thanks for your comments and valuable time.
> Sure Lars, Will do it.
>>
>>
> 
> 
> 
> --
> Shine bright,
> (: Nav :)
> --
> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

      reply	other threads:[~2013-03-03 12:16 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-21 13:37 [PATCH] iio: adc: add exynos5 adc driver under iio framwork Naveen Krishna Chatradhi
2013-01-22  9:44 ` Lars-Peter Clausen
2013-01-22 14:03   ` Naveen Krishna Ch
2013-01-22 14:27 ` Naveen Krishna Chatradhi
2013-01-23  4:58 ` Naveen Krishna Chatradhi
2013-01-23 12:52   ` Lars-Peter Clausen
2013-01-24  0:42     ` Doug Anderson
2013-01-24  9:54       ` Lars-Peter Clausen
2013-01-24 14:20         ` Naveen Krishna Ch
2013-01-24 18:11           ` Lars-Peter Clausen
2013-01-24 16:12         ` Doug Anderson
2013-01-24 18:19           ` Lars-Peter Clausen
2013-01-24 19:15             ` Tomasz Figa
2013-01-24 19:30               ` Lars-Peter Clausen
2013-02-12 21:07   ` Guenter Roeck
2013-02-13  2:48     ` Naveen Krishna Ch
2013-02-13 11:05       ` Naveen Krishna Ch
2013-02-13 13:16       ` Naveen Krishna Ch
2013-02-13 13:30         ` Lars-Peter Clausen
2013-02-13 13:53           ` Naveen Krishna Ch
2013-02-13 14:05             ` Lars-Peter Clausen
2013-02-13 15:51         ` Guenter Roeck
2013-01-24  4:58 ` [PATCH] " Naveen Krishna Chatradhi
2013-01-26 10:57   ` Jonathan Cameron
2013-01-24  5:05 ` Naveen Krishna Chatradhi
2013-02-12  1:22   ` Olof Johansson
2013-02-14 12:11 ` [PATCH v6] iio: adc: add exynos " Naveen Krishna Chatradhi
2013-02-14 20:55   ` Lars-Peter Clausen
2013-02-15  6:56   ` [PATCH v7] " Naveen Krishna Chatradhi
2013-02-15 13:13     ` Lars-Peter Clausen
2013-02-15 13:17       ` Naveen Krishna Ch
2013-02-15 13:26         ` Lars-Peter Clausen
2013-02-15 13:35           ` Naveen Krishna Ch
2013-03-03 12:16             ` Jonathan Cameron [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=51333F22.70702@kernel.org \
    --to=jic23@kernel.org \
    --cc=ch.naveen@samsung.com \
    --cc=dianders@chromium.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=naveenkrishna.ch@gmail.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;
as well as URLs for NNTP newsgroup(s).