All of lore.kernel.org
 help / color / mirror / Atom feed
From: Antoine Tenart <antoine.tenart@free-electrons.com>
To: Quentin Schulz <quentin.schulz@free-electrons.com>
Cc: jdelvare@suse.com, linux@roeck-us.net, jic23@kernel.org,
	knaack.h@gmx.de, lars@metafoo.de, pmeerw@pmeerw.net,
	maxime.ripard@free-electrons.com, wens@csie.org,
	lee.jones@linaro.org, linux-kernel@vger.kernel.org,
	linux-hwmon@vger.kernel.org, linux-iio@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	thomas.petazzoni@free-electrons.com,
	antoine.tenart@free-electrons.com
Subject: Re: [PATCH 1/3] mfd: add support for Allwinner SoCs ADC
Date: Tue, 28 Jun 2016 10:30:24 +0200	[thread overview]
Message-ID: <20160628083024.GC4472@kwain> (raw)
In-Reply-To: <1467101897-15946-2-git-send-email-quentin.schulz@free-electrons.com>

[-- Attachment #1: Type: text/plain, Size: 1452 bytes --]

Hello Quentin!

A few comments bellow:

On Tue, Jun 28, 2016 at 10:18:15AM +0200, Quentin Schulz wrote:
>
> diff --git a/drivers/mfd/sunxi-gpadc-mfd.c b/drivers/mfd/sunxi-gpadc-mfd.c
> new file mode 100644
> index 0000000..710e297
> --- /dev/null
> +++ b/drivers/mfd/sunxi-gpadc-mfd.c
> @@ -0,0 +1,188 @@

You should add a license statement here.

> +#include <linux/interrupt.h>
> +#include <linux/regmap.h>
> +#include <linux/mfd/sunxi-gpadc-mfd.h>
> +#include <linux/mfd/core.h>
> +#include <linux/of_device.h>
> +#include <linux/of_irq.h>
> +#include <linux/kernel.h>
> +#include <linux/module.h>

Headers are usually included in the alphabetical order.

[...]

> diff --git a/include/linux/mfd/sunxi-gpadc-mfd.h b/include/linux/mfd/sunxi-gpadc-mfd.h
> new file mode 100644
> index 0000000..341f8c3
> --- /dev/null
> +++ b/include/linux/mfd/sunxi-gpadc-mfd.h
> @@ -0,0 +1,14 @@

You should also add a license statement here.

> +#ifndef __SUNXI_GPADC_MFD__H__
> +#define __SUNXI_GPADC_MFD__H__
> +
> +#define TP_INT_FIFOC            0x10
> +#define TP_INT_FIFOS            0x14
> +
> +struct sunxi_gpadc_mfd_dev {
> +	void __iomem			*regs;
> +	struct device			*dev;
> +	struct regmap			*regmap;
> +	struct regmap_irq_chip_data	*regmap_irqc;
> +};
> +
> +#endif

Thanks!

Antoine

-- 
Antoine Ténart, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: antoine.tenart@free-electrons.com (Antoine Tenart)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/3] mfd: add support for Allwinner SoCs ADC
Date: Tue, 28 Jun 2016 10:30:24 +0200	[thread overview]
Message-ID: <20160628083024.GC4472@kwain> (raw)
In-Reply-To: <1467101897-15946-2-git-send-email-quentin.schulz@free-electrons.com>

Hello Quentin!

A few comments bellow:

On Tue, Jun 28, 2016 at 10:18:15AM +0200, Quentin Schulz wrote:
>
> diff --git a/drivers/mfd/sunxi-gpadc-mfd.c b/drivers/mfd/sunxi-gpadc-mfd.c
> new file mode 100644
> index 0000000..710e297
> --- /dev/null
> +++ b/drivers/mfd/sunxi-gpadc-mfd.c
> @@ -0,0 +1,188 @@

You should add a license statement here.

> +#include <linux/interrupt.h>
> +#include <linux/regmap.h>
> +#include <linux/mfd/sunxi-gpadc-mfd.h>
> +#include <linux/mfd/core.h>
> +#include <linux/of_device.h>
> +#include <linux/of_irq.h>
> +#include <linux/kernel.h>
> +#include <linux/module.h>

Headers are usually included in the alphabetical order.

[...]

> diff --git a/include/linux/mfd/sunxi-gpadc-mfd.h b/include/linux/mfd/sunxi-gpadc-mfd.h
> new file mode 100644
> index 0000000..341f8c3
> --- /dev/null
> +++ b/include/linux/mfd/sunxi-gpadc-mfd.h
> @@ -0,0 +1,14 @@

You should also add a license statement here.

> +#ifndef __SUNXI_GPADC_MFD__H__
> +#define __SUNXI_GPADC_MFD__H__
> +
> +#define TP_INT_FIFOC            0x10
> +#define TP_INT_FIFOS            0x14
> +
> +struct sunxi_gpadc_mfd_dev {
> +	void __iomem			*regs;
> +	struct device			*dev;
> +	struct regmap			*regmap;
> +	struct regmap_irq_chip_data	*regmap_irqc;
> +};
> +
> +#endif

Thanks!

Antoine

-- 
Antoine T?nart, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20160628/ba8b4749/attachment.sig>

  reply	other threads:[~2016-06-28  8:30 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-28  8:45 [PATCH 0/3] add support for Allwinner SoCs ADC Quentin Schulz
2016-06-28  8:45 ` Quentin Schulz
2016-06-28  8:18 ` [PATCH 1/3] mfd: " Quentin Schulz
2016-06-28  8:18   ` Quentin Schulz
2016-06-28  8:30   ` Antoine Tenart [this message]
2016-06-28  8:30     ` Antoine Tenart
2016-06-28  8:51   ` Antoine Tenart
2016-06-28  8:51     ` Antoine Tenart
2016-07-03 11:17   ` Jonathan Cameron
2016-07-03 11:17     ` Jonathan Cameron
2016-07-03 16:49     ` Lars-Peter Clausen
2016-07-03 16:49       ` Lars-Peter Clausen
2016-07-03 17:38       ` Guenter Roeck
2016-07-03 17:38         ` Guenter Roeck
2016-06-28  8:18 ` [PATCH 2/3] iio: adc: " Quentin Schulz
2016-06-28  8:18   ` Quentin Schulz
2016-06-28  8:32   ` Antoine Tenart
2016-06-28  8:32     ` Antoine Tenart
2016-06-28  9:24   ` Peter Meerwald-Stadler
2016-06-28 13:39     ` Quentin Schulz
2016-06-28 14:18       ` Peter Meerwald-Stadler
2016-06-28 16:25         ` Jonathan Cameron
2016-07-03 11:54   ` Jonathan Cameron
2016-07-03 11:54     ` Jonathan Cameron
2016-07-03 12:48     ` Jonathan Cameron
2016-07-03 12:48       ` Jonathan Cameron
2016-07-03 15:43     ` Guenter Roeck
2016-07-03 15:43       ` Guenter Roeck
2016-07-04  7:26       ` Quentin Schulz
2016-07-04  7:26         ` Quentin Schulz
2016-07-04 16:29         ` Guenter Roeck
2016-07-04 16:29           ` Guenter Roeck
2016-07-05  7:40           ` Quentin Schulz
2016-07-05  7:40             ` Quentin Schulz
2016-06-28  8:18 ` [PATCH 3/3] hwmon: iio_hwmon: defer probe when no channel is found Quentin Schulz
2016-06-28  8:18   ` Quentin Schulz
2016-06-30  3:47   ` [3/3] " Guenter Roeck
2016-06-30  3:47     ` Guenter Roeck
2016-06-30 13:59     ` Jonathan Cameron
2016-06-30 13:59       ` Jonathan Cameron
2016-06-30 14:49       ` Lars-Peter Clausen
2016-06-30 14:49         ` Lars-Peter Clausen
2016-06-30 14:51       ` Guenter Roeck
2016-06-30 14:51         ` Guenter Roeck
2016-07-03 10:47         ` Jonathan Cameron
2016-07-03 10:47           ` Jonathan Cameron
2016-07-03 15:48           ` Guenter Roeck
2016-07-03 15:48             ` Guenter Roeck
2016-06-29  3:28 ` [PATCH 0/3] add support for Allwinner SoCs ADC Chen-Yu Tsai
2016-06-29  3:28   ` Chen-Yu Tsai
2016-07-01  9:45   ` Quentin Schulz
2016-07-01  9:45     ` Quentin Schulz

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=20160628083024.GC4472@kwain \
    --to=antoine.tenart@free-electrons.com \
    --cc=jdelvare@suse.com \
    --cc=jic23@kernel.org \
    --cc=knaack.h@gmx.de \
    --cc=lars@metafoo.de \
    --cc=lee.jones@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-hwmon@vger.kernel.org \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=maxime.ripard@free-electrons.com \
    --cc=pmeerw@pmeerw.net \
    --cc=quentin.schulz@free-electrons.com \
    --cc=thomas.petazzoni@free-electrons.com \
    --cc=wens@csie.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 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.