From: Jonathan Cameron <jic23@kernel.org>
To: Fabrice Gasnier <fabrice.gasnier@st.com>
Cc: <robh+dt@kernel.org>, <linux@armlinux.org.uk>,
<mark.rutland@arm.com>, <mcoquelin.stm32@gmail.com>,
<alexandre.torgue@st.com>, <lars@metafoo.de>, <knaack.h@gmx.de>,
<pmeerw@pmeerw.net>, <linux-iio@vger.kernel.org>,
<devicetree@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>, <benjamin.gaignard@linaro.org>,
<benjamin.gaignard@st.com>
Subject: Re: [PATCH 2/3] iio: adc: stm32: remove const channel names definition
Date: Sat, 21 Oct 2017 18:59:09 +0100 [thread overview]
Message-ID: <20171021185909.272ec00a@archlinux> (raw)
In-Reply-To: <1508246145-19417-3-git-send-email-fabrice.gasnier@st.com>
On Tue, 17 Oct 2017 15:15:44 +0200
Fabrice Gasnier <fabrice.gasnier@st.com> wrote:
> Remove const array that defines channels. Build channels definition
> at probe time, when initializing channels (only for requested ones).
> This will ease adding differential channels support.
>
> Signed-off-by: Fabrice Gasnier <fabrice.gasnier@st.com>
Looks good to me.
> ---
> drivers/iio/adc/stm32-adc.c | 66 ++++++++++-----------------------------------
> 1 file changed, 14 insertions(+), 52 deletions(-)
>
> diff --git a/drivers/iio/adc/stm32-adc.c b/drivers/iio/adc/stm32-adc.c
> index 4df32cf..c95e6f7 100644
> --- a/drivers/iio/adc/stm32-adc.c
> +++ b/drivers/iio/adc/stm32-adc.c
> @@ -153,6 +153,8 @@ enum stm32h7_adc_dmngt {
> /* BOOST bit must be set on STM32H7 when ADC clock is above 20MHz */
> #define STM32H7_BOOST_CLKRATE 20000000UL
>
> +#define STM32_ADC_CH_MAX 20 /* max number of channels */
> +#define STM32_ADC_CH_SZ 5 /* max channel name size */
> #define STM32_ADC_MAX_SQ 16 /* SQ1..SQ16 */
> #define STM32_ADC_MAX_SMP 7 /* SMPx range is [0..7] */
> #define STM32_ADC_TIMEOUT_US 100000
> @@ -300,6 +302,7 @@ struct stm32_adc_cfg {
> * @pcsel bitmask to preselect channels on some devices
> * @smpr_val: sampling time settings (e.g. smpr1 / smpr2)
> * @cal: optional calibration data on some devices
> + * @chan_name: channel name array
> */
> struct stm32_adc {
> struct stm32_adc_common *common;
> @@ -321,69 +324,28 @@ struct stm32_adc {
> u32 pcsel;
> u32 smpr_val[2];
> struct stm32_adc_calib cal;
> -};
> -
> -/**
> - * struct stm32_adc_chan_spec - specification of stm32 adc channel
> - * @type: IIO channel type
> - * @channel: channel number (single ended)
> - * @name: channel name (single ended)
> - */
> -struct stm32_adc_chan_spec {
> - enum iio_chan_type type;
> - int channel;
> - const char *name;
> + char chan_name[STM32_ADC_CH_MAX][STM32_ADC_CH_SZ];
> };
>
> /**
> * struct stm32_adc_info - stm32 ADC, per instance config data
> - * @channels: Reference to stm32 channels spec
> * @max_channels: Number of channels
> * @resolutions: available resolutions
> * @num_res: number of available resolutions
> */
> struct stm32_adc_info {
> - const struct stm32_adc_chan_spec *channels;
> int max_channels;
> const unsigned int *resolutions;
> const unsigned int num_res;
> };
>
> -/*
> - * Input definitions common for all instances:
> - * stm32f4 can have up to 16 channels
> - * stm32h7 can have up to 20 channels
> - */
> -static const struct stm32_adc_chan_spec stm32_adc_channels[] = {
> - { IIO_VOLTAGE, 0, "in0" },
> - { IIO_VOLTAGE, 1, "in1" },
> - { IIO_VOLTAGE, 2, "in2" },
> - { IIO_VOLTAGE, 3, "in3" },
> - { IIO_VOLTAGE, 4, "in4" },
> - { IIO_VOLTAGE, 5, "in5" },
> - { IIO_VOLTAGE, 6, "in6" },
> - { IIO_VOLTAGE, 7, "in7" },
> - { IIO_VOLTAGE, 8, "in8" },
> - { IIO_VOLTAGE, 9, "in9" },
> - { IIO_VOLTAGE, 10, "in10" },
> - { IIO_VOLTAGE, 11, "in11" },
> - { IIO_VOLTAGE, 12, "in12" },
> - { IIO_VOLTAGE, 13, "in13" },
> - { IIO_VOLTAGE, 14, "in14" },
> - { IIO_VOLTAGE, 15, "in15" },
> - { IIO_VOLTAGE, 16, "in16" },
> - { IIO_VOLTAGE, 17, "in17" },
> - { IIO_VOLTAGE, 18, "in18" },
> - { IIO_VOLTAGE, 19, "in19" },
> -};
> -
> static const unsigned int stm32f4_adc_resolutions[] = {
> /* sorted values so the index matches RES[1:0] in STM32F4_ADC_CR1 */
> 12, 10, 8, 6,
> };
>
> +/* stm32f4 can have up to 16 channels */
> static const struct stm32_adc_info stm32f4_adc_info = {
> - .channels = stm32_adc_channels,
> .max_channels = 16,
> .resolutions = stm32f4_adc_resolutions,
> .num_res = ARRAY_SIZE(stm32f4_adc_resolutions),
> @@ -394,9 +356,9 @@ struct stm32_adc_info {
> 16, 14, 12, 10, 8,
> };
>
> +/* stm32h7 can have up to 20 channels */
> static const struct stm32_adc_info stm32h7_adc_info = {
> - .channels = stm32_adc_channels,
> - .max_channels = 20,
> + .max_channels = STM32_ADC_CH_MAX,
> .resolutions = stm32h7_adc_resolutions,
> .num_res = ARRAY_SIZE(stm32h7_adc_resolutions),
> };
> @@ -1628,15 +1590,16 @@ static void stm32_adc_smpr_init(struct stm32_adc *adc, int channel, u32 smp_ns)
> }
>
> static void stm32_adc_chan_init_one(struct iio_dev *indio_dev,
> - struct iio_chan_spec *chan,
> - const struct stm32_adc_chan_spec *channel,
> + struct iio_chan_spec *chan, u32 val,
> int scan_index, u32 smp)
> {
> struct stm32_adc *adc = iio_priv(indio_dev);
> + char *name = adc->chan_name[val];
>
> - chan->type = channel->type;
> - chan->channel = channel->channel;
> - chan->datasheet_name = channel->name;
> + chan->type = IIO_VOLTAGE;
> + chan->channel = val;
> + snprintf(name, STM32_ADC_CH_SZ, "in%d", val);
> + chan->datasheet_name = name;
> chan->scan_index = scan_index;
> chan->indexed = 1;
> chan->info_mask_separate = BIT(IIO_CHAN_INFO_RAW);
> @@ -1699,8 +1662,7 @@ static int stm32_adc_chan_of_init(struct iio_dev *indio_dev)
> scan_index, &smp);
>
> stm32_adc_chan_init_one(indio_dev, &channels[scan_index],
> - &adc_info->channels[val],
> - scan_index, smp);
> + val, scan_index, smp);
> scan_index++;
> }
>
WARNING: multiple messages have this Message-ID (diff)
From: jic23@kernel.org (Jonathan Cameron)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 2/3] iio: adc: stm32: remove const channel names definition
Date: Sat, 21 Oct 2017 18:59:09 +0100 [thread overview]
Message-ID: <20171021185909.272ec00a@archlinux> (raw)
In-Reply-To: <1508246145-19417-3-git-send-email-fabrice.gasnier@st.com>
On Tue, 17 Oct 2017 15:15:44 +0200
Fabrice Gasnier <fabrice.gasnier@st.com> wrote:
> Remove const array that defines channels. Build channels definition
> at probe time, when initializing channels (only for requested ones).
> This will ease adding differential channels support.
>
> Signed-off-by: Fabrice Gasnier <fabrice.gasnier@st.com>
Looks good to me.
> ---
> drivers/iio/adc/stm32-adc.c | 66 ++++++++++-----------------------------------
> 1 file changed, 14 insertions(+), 52 deletions(-)
>
> diff --git a/drivers/iio/adc/stm32-adc.c b/drivers/iio/adc/stm32-adc.c
> index 4df32cf..c95e6f7 100644
> --- a/drivers/iio/adc/stm32-adc.c
> +++ b/drivers/iio/adc/stm32-adc.c
> @@ -153,6 +153,8 @@ enum stm32h7_adc_dmngt {
> /* BOOST bit must be set on STM32H7 when ADC clock is above 20MHz */
> #define STM32H7_BOOST_CLKRATE 20000000UL
>
> +#define STM32_ADC_CH_MAX 20 /* max number of channels */
> +#define STM32_ADC_CH_SZ 5 /* max channel name size */
> #define STM32_ADC_MAX_SQ 16 /* SQ1..SQ16 */
> #define STM32_ADC_MAX_SMP 7 /* SMPx range is [0..7] */
> #define STM32_ADC_TIMEOUT_US 100000
> @@ -300,6 +302,7 @@ struct stm32_adc_cfg {
> * @pcsel bitmask to preselect channels on some devices
> * @smpr_val: sampling time settings (e.g. smpr1 / smpr2)
> * @cal: optional calibration data on some devices
> + * @chan_name: channel name array
> */
> struct stm32_adc {
> struct stm32_adc_common *common;
> @@ -321,69 +324,28 @@ struct stm32_adc {
> u32 pcsel;
> u32 smpr_val[2];
> struct stm32_adc_calib cal;
> -};
> -
> -/**
> - * struct stm32_adc_chan_spec - specification of stm32 adc channel
> - * @type: IIO channel type
> - * @channel: channel number (single ended)
> - * @name: channel name (single ended)
> - */
> -struct stm32_adc_chan_spec {
> - enum iio_chan_type type;
> - int channel;
> - const char *name;
> + char chan_name[STM32_ADC_CH_MAX][STM32_ADC_CH_SZ];
> };
>
> /**
> * struct stm32_adc_info - stm32 ADC, per instance config data
> - * @channels: Reference to stm32 channels spec
> * @max_channels: Number of channels
> * @resolutions: available resolutions
> * @num_res: number of available resolutions
> */
> struct stm32_adc_info {
> - const struct stm32_adc_chan_spec *channels;
> int max_channels;
> const unsigned int *resolutions;
> const unsigned int num_res;
> };
>
> -/*
> - * Input definitions common for all instances:
> - * stm32f4 can have up to 16 channels
> - * stm32h7 can have up to 20 channels
> - */
> -static const struct stm32_adc_chan_spec stm32_adc_channels[] = {
> - { IIO_VOLTAGE, 0, "in0" },
> - { IIO_VOLTAGE, 1, "in1" },
> - { IIO_VOLTAGE, 2, "in2" },
> - { IIO_VOLTAGE, 3, "in3" },
> - { IIO_VOLTAGE, 4, "in4" },
> - { IIO_VOLTAGE, 5, "in5" },
> - { IIO_VOLTAGE, 6, "in6" },
> - { IIO_VOLTAGE, 7, "in7" },
> - { IIO_VOLTAGE, 8, "in8" },
> - { IIO_VOLTAGE, 9, "in9" },
> - { IIO_VOLTAGE, 10, "in10" },
> - { IIO_VOLTAGE, 11, "in11" },
> - { IIO_VOLTAGE, 12, "in12" },
> - { IIO_VOLTAGE, 13, "in13" },
> - { IIO_VOLTAGE, 14, "in14" },
> - { IIO_VOLTAGE, 15, "in15" },
> - { IIO_VOLTAGE, 16, "in16" },
> - { IIO_VOLTAGE, 17, "in17" },
> - { IIO_VOLTAGE, 18, "in18" },
> - { IIO_VOLTAGE, 19, "in19" },
> -};
> -
> static const unsigned int stm32f4_adc_resolutions[] = {
> /* sorted values so the index matches RES[1:0] in STM32F4_ADC_CR1 */
> 12, 10, 8, 6,
> };
>
> +/* stm32f4 can have up to 16 channels */
> static const struct stm32_adc_info stm32f4_adc_info = {
> - .channels = stm32_adc_channels,
> .max_channels = 16,
> .resolutions = stm32f4_adc_resolutions,
> .num_res = ARRAY_SIZE(stm32f4_adc_resolutions),
> @@ -394,9 +356,9 @@ struct stm32_adc_info {
> 16, 14, 12, 10, 8,
> };
>
> +/* stm32h7 can have up to 20 channels */
> static const struct stm32_adc_info stm32h7_adc_info = {
> - .channels = stm32_adc_channels,
> - .max_channels = 20,
> + .max_channels = STM32_ADC_CH_MAX,
> .resolutions = stm32h7_adc_resolutions,
> .num_res = ARRAY_SIZE(stm32h7_adc_resolutions),
> };
> @@ -1628,15 +1590,16 @@ static void stm32_adc_smpr_init(struct stm32_adc *adc, int channel, u32 smp_ns)
> }
>
> static void stm32_adc_chan_init_one(struct iio_dev *indio_dev,
> - struct iio_chan_spec *chan,
> - const struct stm32_adc_chan_spec *channel,
> + struct iio_chan_spec *chan, u32 val,
> int scan_index, u32 smp)
> {
> struct stm32_adc *adc = iio_priv(indio_dev);
> + char *name = adc->chan_name[val];
>
> - chan->type = channel->type;
> - chan->channel = channel->channel;
> - chan->datasheet_name = channel->name;
> + chan->type = IIO_VOLTAGE;
> + chan->channel = val;
> + snprintf(name, STM32_ADC_CH_SZ, "in%d", val);
> + chan->datasheet_name = name;
> chan->scan_index = scan_index;
> chan->indexed = 1;
> chan->info_mask_separate = BIT(IIO_CHAN_INFO_RAW);
> @@ -1699,8 +1662,7 @@ static int stm32_adc_chan_of_init(struct iio_dev *indio_dev)
> scan_index, &smp);
>
> stm32_adc_chan_init_one(indio_dev, &channels[scan_index],
> - &adc_info->channels[val],
> - scan_index, smp);
> + val, scan_index, smp);
> scan_index++;
> }
>
WARNING: multiple messages have this Message-ID (diff)
From: Jonathan Cameron <jic23-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
To: Fabrice Gasnier <fabrice.gasnier-qxv4g6HH51o@public.gmane.org>
Cc: robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
linux-I+IVW8TIWO2tmTQ+vhA3Yw@public.gmane.org,
mark.rutland-5wv7dgnIgG8@public.gmane.org,
mcoquelin.stm32-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
alexandre.torgue-qxv4g6HH51o@public.gmane.org,
lars-Qo5EllUWu/uELgA04lAiVw@public.gmane.org,
knaack.h-Mmb7MZpHnFY@public.gmane.org,
pmeerw-jW+XmwGofnusTnJN9+BGXg@public.gmane.org,
linux-iio-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
benjamin.gaignard-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
benjamin.gaignard-qxv4g6HH51o@public.gmane.org
Subject: Re: [PATCH 2/3] iio: adc: stm32: remove const channel names definition
Date: Sat, 21 Oct 2017 18:59:09 +0100 [thread overview]
Message-ID: <20171021185909.272ec00a@archlinux> (raw)
In-Reply-To: <1508246145-19417-3-git-send-email-fabrice.gasnier-qxv4g6HH51o@public.gmane.org>
On Tue, 17 Oct 2017 15:15:44 +0200
Fabrice Gasnier <fabrice.gasnier-qxv4g6HH51o@public.gmane.org> wrote:
> Remove const array that defines channels. Build channels definition
> at probe time, when initializing channels (only for requested ones).
> This will ease adding differential channels support.
>
> Signed-off-by: Fabrice Gasnier <fabrice.gasnier-qxv4g6HH51o@public.gmane.org>
Looks good to me.
> ---
> drivers/iio/adc/stm32-adc.c | 66 ++++++++++-----------------------------------
> 1 file changed, 14 insertions(+), 52 deletions(-)
>
> diff --git a/drivers/iio/adc/stm32-adc.c b/drivers/iio/adc/stm32-adc.c
> index 4df32cf..c95e6f7 100644
> --- a/drivers/iio/adc/stm32-adc.c
> +++ b/drivers/iio/adc/stm32-adc.c
> @@ -153,6 +153,8 @@ enum stm32h7_adc_dmngt {
> /* BOOST bit must be set on STM32H7 when ADC clock is above 20MHz */
> #define STM32H7_BOOST_CLKRATE 20000000UL
>
> +#define STM32_ADC_CH_MAX 20 /* max number of channels */
> +#define STM32_ADC_CH_SZ 5 /* max channel name size */
> #define STM32_ADC_MAX_SQ 16 /* SQ1..SQ16 */
> #define STM32_ADC_MAX_SMP 7 /* SMPx range is [0..7] */
> #define STM32_ADC_TIMEOUT_US 100000
> @@ -300,6 +302,7 @@ struct stm32_adc_cfg {
> * @pcsel bitmask to preselect channels on some devices
> * @smpr_val: sampling time settings (e.g. smpr1 / smpr2)
> * @cal: optional calibration data on some devices
> + * @chan_name: channel name array
> */
> struct stm32_adc {
> struct stm32_adc_common *common;
> @@ -321,69 +324,28 @@ struct stm32_adc {
> u32 pcsel;
> u32 smpr_val[2];
> struct stm32_adc_calib cal;
> -};
> -
> -/**
> - * struct stm32_adc_chan_spec - specification of stm32 adc channel
> - * @type: IIO channel type
> - * @channel: channel number (single ended)
> - * @name: channel name (single ended)
> - */
> -struct stm32_adc_chan_spec {
> - enum iio_chan_type type;
> - int channel;
> - const char *name;
> + char chan_name[STM32_ADC_CH_MAX][STM32_ADC_CH_SZ];
> };
>
> /**
> * struct stm32_adc_info - stm32 ADC, per instance config data
> - * @channels: Reference to stm32 channels spec
> * @max_channels: Number of channels
> * @resolutions: available resolutions
> * @num_res: number of available resolutions
> */
> struct stm32_adc_info {
> - const struct stm32_adc_chan_spec *channels;
> int max_channels;
> const unsigned int *resolutions;
> const unsigned int num_res;
> };
>
> -/*
> - * Input definitions common for all instances:
> - * stm32f4 can have up to 16 channels
> - * stm32h7 can have up to 20 channels
> - */
> -static const struct stm32_adc_chan_spec stm32_adc_channels[] = {
> - { IIO_VOLTAGE, 0, "in0" },
> - { IIO_VOLTAGE, 1, "in1" },
> - { IIO_VOLTAGE, 2, "in2" },
> - { IIO_VOLTAGE, 3, "in3" },
> - { IIO_VOLTAGE, 4, "in4" },
> - { IIO_VOLTAGE, 5, "in5" },
> - { IIO_VOLTAGE, 6, "in6" },
> - { IIO_VOLTAGE, 7, "in7" },
> - { IIO_VOLTAGE, 8, "in8" },
> - { IIO_VOLTAGE, 9, "in9" },
> - { IIO_VOLTAGE, 10, "in10" },
> - { IIO_VOLTAGE, 11, "in11" },
> - { IIO_VOLTAGE, 12, "in12" },
> - { IIO_VOLTAGE, 13, "in13" },
> - { IIO_VOLTAGE, 14, "in14" },
> - { IIO_VOLTAGE, 15, "in15" },
> - { IIO_VOLTAGE, 16, "in16" },
> - { IIO_VOLTAGE, 17, "in17" },
> - { IIO_VOLTAGE, 18, "in18" },
> - { IIO_VOLTAGE, 19, "in19" },
> -};
> -
> static const unsigned int stm32f4_adc_resolutions[] = {
> /* sorted values so the index matches RES[1:0] in STM32F4_ADC_CR1 */
> 12, 10, 8, 6,
> };
>
> +/* stm32f4 can have up to 16 channels */
> static const struct stm32_adc_info stm32f4_adc_info = {
> - .channels = stm32_adc_channels,
> .max_channels = 16,
> .resolutions = stm32f4_adc_resolutions,
> .num_res = ARRAY_SIZE(stm32f4_adc_resolutions),
> @@ -394,9 +356,9 @@ struct stm32_adc_info {
> 16, 14, 12, 10, 8,
> };
>
> +/* stm32h7 can have up to 20 channels */
> static const struct stm32_adc_info stm32h7_adc_info = {
> - .channels = stm32_adc_channels,
> - .max_channels = 20,
> + .max_channels = STM32_ADC_CH_MAX,
> .resolutions = stm32h7_adc_resolutions,
> .num_res = ARRAY_SIZE(stm32h7_adc_resolutions),
> };
> @@ -1628,15 +1590,16 @@ static void stm32_adc_smpr_init(struct stm32_adc *adc, int channel, u32 smp_ns)
> }
>
> static void stm32_adc_chan_init_one(struct iio_dev *indio_dev,
> - struct iio_chan_spec *chan,
> - const struct stm32_adc_chan_spec *channel,
> + struct iio_chan_spec *chan, u32 val,
> int scan_index, u32 smp)
> {
> struct stm32_adc *adc = iio_priv(indio_dev);
> + char *name = adc->chan_name[val];
>
> - chan->type = channel->type;
> - chan->channel = channel->channel;
> - chan->datasheet_name = channel->name;
> + chan->type = IIO_VOLTAGE;
> + chan->channel = val;
> + snprintf(name, STM32_ADC_CH_SZ, "in%d", val);
> + chan->datasheet_name = name;
> chan->scan_index = scan_index;
> chan->indexed = 1;
> chan->info_mask_separate = BIT(IIO_CHAN_INFO_RAW);
> @@ -1699,8 +1662,7 @@ static int stm32_adc_chan_of_init(struct iio_dev *indio_dev)
> scan_index, &smp);
>
> stm32_adc_chan_init_one(indio_dev, &channels[scan_index],
> - &adc_info->channels[val],
> - scan_index, smp);
> + val, scan_index, smp);
> scan_index++;
> }
>
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2017-10-21 17:59 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-17 13:15 [PATCH 0/3] iio: adc: stm32: Add support for differential channels Fabrice Gasnier
2017-10-17 13:15 ` Fabrice Gasnier
2017-10-17 13:15 ` Fabrice Gasnier
2017-10-17 13:15 ` [PATCH 1/3] dt-bindings: iio: adc: stm32: add support for diff channels Fabrice Gasnier
2017-10-17 13:15 ` Fabrice Gasnier
2017-10-17 13:15 ` Fabrice Gasnier
2017-10-21 17:54 ` Jonathan Cameron
2017-10-21 17:54 ` Jonathan Cameron
2017-10-21 17:54 ` Jonathan Cameron
2017-10-21 17:55 ` Jonathan Cameron
2017-10-21 17:55 ` Jonathan Cameron
2017-10-21 17:55 ` Jonathan Cameron
2017-10-21 19:23 ` Jonathan Cameron
2017-10-21 19:23 ` Jonathan Cameron
2017-10-21 19:23 ` Jonathan Cameron
2017-10-23 8:06 ` Fabrice Gasnier
2017-10-23 8:06 ` Fabrice Gasnier
2017-10-23 8:06 ` Fabrice Gasnier
2017-10-23 13:09 ` Jonathan Cameron
2017-10-23 13:09 ` Jonathan Cameron
2017-10-23 13:09 ` Jonathan Cameron
2017-10-24 16:41 ` Rob Herring
2017-10-24 16:41 ` Rob Herring
2017-10-24 16:41 ` Rob Herring
2017-10-24 18:42 ` Jonathan Cameron
2017-10-24 18:42 ` Jonathan Cameron
2017-10-24 18:42 ` Jonathan Cameron
2017-10-25 8:05 ` Fabrice Gasnier
2017-10-25 8:05 ` Fabrice Gasnier
2017-10-25 8:05 ` Fabrice Gasnier
2017-10-17 13:15 ` [PATCH 2/3] iio: adc: stm32: remove const channel names definition Fabrice Gasnier
2017-10-17 13:15 ` Fabrice Gasnier
2017-10-17 13:15 ` Fabrice Gasnier
2017-10-21 17:59 ` Jonathan Cameron [this message]
2017-10-21 17:59 ` Jonathan Cameron
2017-10-21 17:59 ` Jonathan Cameron
2017-10-17 13:15 ` [PATCH 3/3] iio: adc: stm32: add support for differential channels Fabrice Gasnier
2017-10-17 13:15 ` Fabrice Gasnier
2017-10-17 13:15 ` Fabrice Gasnier
2017-10-21 19:25 ` Jonathan Cameron
2017-10-21 19:25 ` Jonathan Cameron
2017-10-21 19:25 ` Jonathan Cameron
2017-10-23 8:09 ` Fabrice Gasnier
2017-10-23 8:09 ` Fabrice Gasnier
2017-10-23 8:09 ` Fabrice Gasnier
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=20171021185909.272ec00a@archlinux \
--to=jic23@kernel.org \
--cc=alexandre.torgue@st.com \
--cc=benjamin.gaignard@linaro.org \
--cc=benjamin.gaignard@st.com \
--cc=devicetree@vger.kernel.org \
--cc=fabrice.gasnier@st.com \
--cc=knaack.h@gmx.de \
--cc=lars@metafoo.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=mark.rutland@arm.com \
--cc=mcoquelin.stm32@gmail.com \
--cc=pmeerw@pmeerw.net \
--cc=robh+dt@kernel.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.