* [PATCH] staging: iio: meter: ade7754: Implement IIO_CHAN_INFO_SAMP_FREQ
@ 2016-10-06 16:02 sayli karnik
2016-10-07 16:46 ` [Outreachy kernel] " Alison Schofield
0 siblings, 1 reply; 3+ messages in thread
From: sayli karnik @ 2016-10-06 16:02 UTC (permalink / raw)
To: outreachy-kernel
Cc: Jonathan Cameron, Hartmut Knaack, Lars-Peter Clausen,
Peter Meerwald-Stadler, Greg Kroah-Hartman, linux-iio, Barry Song
Attributes that were once privately defined become standard with time
and hence a special global define is used. Hence update driver ade7754 to use
IIO_CHAN_INFO_SAMP_FREQ which is a global define instead of
IIO_DEV_ATTR_SAMP_FREQ.
Move functionality from IIO_DEV_ATTR_SAMP_FREQ attribute into
IIO_CHAN_INFO_SAMP_FREQ to implement the sampling_frequency attribute.
Add ade7754_read_raw() and ade7754_write_raw() to allow reading and
writing the element as well.
Signed-off-by: sayli karnik <karniksayli1995@gmail.com>
---
drivers/staging/iio/meter/ade7754.c | 155 +++++++++++++++++++++---------------
1 file changed, 89 insertions(+), 66 deletions(-)
diff --git a/drivers/staging/iio/meter/ade7754.c b/drivers/staging/iio/meter/ade7754.c
index 1730959..8043539 100644
--- a/drivers/staging/iio/meter/ade7754.c
+++ b/drivers/staging/iio/meter/ade7754.c
@@ -395,81 +395,15 @@ err_ret:
return ret;
}
-static ssize_t ade7754_read_frequency(struct device *dev,
- struct device_attribute *attr,
- char *buf)
-{
- int ret;
- u8 t;
- int sps;
-
- ret = ade7754_spi_read_reg_8(dev, ADE7754_WAVMODE, &t);
- if (ret)
- return ret;
-
- t = (t >> 3) & 0x3;
- sps = 26000 / (1 + t);
-
- return sprintf(buf, "%d\n", sps);
-}
-
-static ssize_t ade7754_write_frequency(struct device *dev,
- struct device_attribute *attr,
- const char *buf,
- size_t len)
-{
- struct iio_dev *indio_dev = dev_to_iio_dev(dev);
- struct ade7754_state *st = iio_priv(indio_dev);
- u16 val;
- int ret;
- u8 reg, t;
-
- ret = kstrtou16(buf, 10, &val);
- if (ret)
- return ret;
- if (!val)
- return -EINVAL;
-
- mutex_lock(&indio_dev->mlock);
-
- t = 26000 / val;
- if (t > 0)
- t--;
-
- if (t > 1)
- st->us->max_speed_hz = ADE7754_SPI_SLOW;
- else
- st->us->max_speed_hz = ADE7754_SPI_FAST;
-
- ret = ade7754_spi_read_reg_8(dev, ADE7754_WAVMODE, ®);
- if (ret)
- goto out;
-
- reg &= ~(3 << 3);
- reg |= t << 3;
-
- ret = ade7754_spi_write_reg_8(dev, ADE7754_WAVMODE, reg);
-
-out:
- mutex_unlock(&indio_dev->mlock);
-
- return ret ? ret : len;
-}
static IIO_DEV_ATTR_TEMP_RAW(ade7754_read_8bit);
static IIO_CONST_ATTR(in_temp_offset, "129 C");
static IIO_CONST_ATTR(in_temp_scale, "4 C");
-
-static IIO_DEV_ATTR_SAMP_FREQ(S_IWUSR | S_IRUGO,
- ade7754_read_frequency,
- ade7754_write_frequency);
-
static IIO_CONST_ATTR_SAMP_FREQ_AVAIL("26000 13000 65000 33000");
static struct attribute *ade7754_attributes[] = {
&iio_dev_attr_in_temp_raw.dev_attr.attr,
&iio_const_attr_in_temp_offset.dev_attr.attr,
&iio_const_attr_in_temp_scale.dev_attr.attr,
- &iio_dev_attr_sampling_frequency.dev_attr.attr,
&iio_const_attr_sampling_frequency_available.dev_attr.attr,
&iio_dev_attr_aenergy.dev_attr.attr,
&iio_dev_attr_laenergy.dev_attr.attr,
@@ -505,6 +439,93 @@ static struct attribute *ade7754_attributes[] = {
NULL,
};
+static int read_raw_samp_freq(struct device *dev, int *val)
+{
+ int ret;
+ u8 t;
+
+ ret = ade7754_spi_read_reg_8(dev, ADE7754_WAVMODE, &t);
+ if (ret)
+ return ret;
+
+ t = (t >> 3) & 0x3;
+ *val = 26000 / (1 + t);
+
+ return 0;
+}
+
+static int write_raw_samp_freq(struct device *dev, int val)
+{
+ struct ade7754_state *st = iio_priv(dev_to_iio_dev(dev));
+ int ret;
+ u8 reg, t;
+
+ if (!val)
+ return -EINVAL;
+
+ t = 26000 / val;
+ if (t > 0)
+ t--;
+
+ if (t > 1)
+ st->us->max_speed_hz = ADE7754_SPI_SLOW;
+ else
+ st->us->max_speed_hz = ADE7754_SPI_FAST;
+
+ ret = ade7754_spi_read_reg_8(dev, ADE7754_WAVMODE, ®);
+ if (ret)
+ return ret;
+
+ reg &= ~(3 << 3);
+ reg |= t << 3;
+
+ ret = ade7754_spi_write_reg_8(dev, ADE7754_WAVMODE, reg);
+
+ return ret;
+}
+
+static int ade7754_read_raw(struct iio_dev *indio_dev,
+ struct iio_chan_spec const *chan,
+ int *val, int *val2, long mask)
+{
+ int ret;
+
+ switch (mask) {
+ case IIO_CHAN_INFO_SAMP_FREQ:
+ if (val2)
+ return -EINVAL;
+ mutex_lock(&indio_dev->mlock);
+ ret = read_raw_samp_freq(&indio_dev->dev, val);
+ mutex_unlock(&indio_dev->mlock);
+ return ret;
+ default:
+ return -EINVAL;
+ }
+
+ return ret;
+}
+
+static int ade7754_write_raw(struct iio_dev *indio_dev,
+ struct iio_chan_spec const *chan,
+ int val, int val2, long mask)
+{
+ int ret;
+
+ switch (mask) {
+ case IIO_CHAN_INFO_SAMP_FREQ:
+ if (val2)
+ return -EINVAL;
+ mutex_lock(&indio_dev->mlock);
+ ret = write_raw_samp_freq(&indio_dev->dev, val);
+ mutex_unlock(&indio_dev->mlock);
+ return ret;
+ default:
+ return -EINVAL;
+ }
+
+ return ret;
+}
+
static const struct attribute_group ade7754_attribute_group = {
.attrs = ade7754_attributes,
};
@@ -512,6 +533,8 @@ static const struct attribute_group ade7754_attribute_group = {
static const struct iio_info ade7754_info = {
.attrs = &ade7754_attribute_group,
.driver_module = THIS_MODULE,
+ .read_raw = &ade7754_read_raw,
+ .write_raw = &ade7754_write_raw,
};
static int ade7754_probe(struct spi_device *spi)
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Outreachy kernel] [PATCH] staging: iio: meter: ade7754: Implement IIO_CHAN_INFO_SAMP_FREQ
2016-10-06 16:02 [PATCH] staging: iio: meter: ade7754: Implement IIO_CHAN_INFO_SAMP_FREQ sayli karnik
@ 2016-10-07 16:46 ` Alison Schofield
2016-10-09 7:36 ` Jonathan Cameron
0 siblings, 1 reply; 3+ messages in thread
From: Alison Schofield @ 2016-10-07 16:46 UTC (permalink / raw)
To: sayli karnik
Cc: outreachy-kernel, Jonathan Cameron, Hartmut Knaack,
Lars-Peter Clausen, Peter Meerwald-Stadler, Greg Kroah-Hartman,
linux-iio, Barry Song
On Thu, Oct 06, 2016 at 09:32:17PM +0530, sayli karnik wrote:
> Attributes that were once privately defined become standard with time
> and hence a special global define is used. Hence update driver ade7754 to use
> IIO_CHAN_INFO_SAMP_FREQ which is a global define instead of
> IIO_DEV_ATTR_SAMP_FREQ.
> Move functionality from IIO_DEV_ATTR_SAMP_FREQ attribute into
> IIO_CHAN_INFO_SAMP_FREQ to implement the sampling_frequency attribute.
> Add ade7754_read_raw() and ade7754_write_raw() to allow reading and
> writing the element as well.
> Signed-off-by: sayli karnik <karniksayli1995@gmail.com>
Hi Sayli,
This one looks similar to the ade7753 patch discussed on linux-iio
recently. No channels defined hence no place to define the attribute.
http://marc.info/?l=linux-iio&m=147552631607342&w=2
alisons
> ---
> drivers/staging/iio/meter/ade7754.c | 155 +++++++++++++++++++++---------------
> 1 file changed, 89 insertions(+), 66 deletions(-)
>
> diff --git a/drivers/staging/iio/meter/ade7754.c b/drivers/staging/iio/meter/ade7754.c
> index 1730959..8043539 100644
> --- a/drivers/staging/iio/meter/ade7754.c
> +++ b/drivers/staging/iio/meter/ade7754.c
> @@ -395,81 +395,15 @@ err_ret:
> return ret;
> }
>
> -static ssize_t ade7754_read_frequency(struct device *dev,
> - struct device_attribute *attr,
> - char *buf)
> -{
> - int ret;
> - u8 t;
> - int sps;
> -
> - ret = ade7754_spi_read_reg_8(dev, ADE7754_WAVMODE, &t);
> - if (ret)
> - return ret;
> -
> - t = (t >> 3) & 0x3;
> - sps = 26000 / (1 + t);
> -
> - return sprintf(buf, "%d\n", sps);
> -}
> -
> -static ssize_t ade7754_write_frequency(struct device *dev,
> - struct device_attribute *attr,
> - const char *buf,
> - size_t len)
> -{
> - struct iio_dev *indio_dev = dev_to_iio_dev(dev);
> - struct ade7754_state *st = iio_priv(indio_dev);
> - u16 val;
> - int ret;
> - u8 reg, t;
> -
> - ret = kstrtou16(buf, 10, &val);
> - if (ret)
> - return ret;
> - if (!val)
> - return -EINVAL;
> -
> - mutex_lock(&indio_dev->mlock);
> -
> - t = 26000 / val;
> - if (t > 0)
> - t--;
> -
> - if (t > 1)
> - st->us->max_speed_hz = ADE7754_SPI_SLOW;
> - else
> - st->us->max_speed_hz = ADE7754_SPI_FAST;
> -
> - ret = ade7754_spi_read_reg_8(dev, ADE7754_WAVMODE, ®);
> - if (ret)
> - goto out;
> -
> - reg &= ~(3 << 3);
> - reg |= t << 3;
> -
> - ret = ade7754_spi_write_reg_8(dev, ADE7754_WAVMODE, reg);
> -
> -out:
> - mutex_unlock(&indio_dev->mlock);
> -
> - return ret ? ret : len;
> -}
> static IIO_DEV_ATTR_TEMP_RAW(ade7754_read_8bit);
> static IIO_CONST_ATTR(in_temp_offset, "129 C");
> static IIO_CONST_ATTR(in_temp_scale, "4 C");
> -
> -static IIO_DEV_ATTR_SAMP_FREQ(S_IWUSR | S_IRUGO,
> - ade7754_read_frequency,
> - ade7754_write_frequency);
> -
> static IIO_CONST_ATTR_SAMP_FREQ_AVAIL("26000 13000 65000 33000");
>
> static struct attribute *ade7754_attributes[] = {
> &iio_dev_attr_in_temp_raw.dev_attr.attr,
> &iio_const_attr_in_temp_offset.dev_attr.attr,
> &iio_const_attr_in_temp_scale.dev_attr.attr,
> - &iio_dev_attr_sampling_frequency.dev_attr.attr,
> &iio_const_attr_sampling_frequency_available.dev_attr.attr,
> &iio_dev_attr_aenergy.dev_attr.attr,
> &iio_dev_attr_laenergy.dev_attr.attr,
> @@ -505,6 +439,93 @@ static struct attribute *ade7754_attributes[] = {
> NULL,
> };
>
> +static int read_raw_samp_freq(struct device *dev, int *val)
> +{
> + int ret;
> + u8 t;
> +
> + ret = ade7754_spi_read_reg_8(dev, ADE7754_WAVMODE, &t);
> + if (ret)
> + return ret;
> +
> + t = (t >> 3) & 0x3;
> + *val = 26000 / (1 + t);
> +
> + return 0;
> +}
> +
> +static int write_raw_samp_freq(struct device *dev, int val)
> +{
> + struct ade7754_state *st = iio_priv(dev_to_iio_dev(dev));
> + int ret;
> + u8 reg, t;
> +
> + if (!val)
> + return -EINVAL;
> +
> + t = 26000 / val;
> + if (t > 0)
> + t--;
> +
> + if (t > 1)
> + st->us->max_speed_hz = ADE7754_SPI_SLOW;
> + else
> + st->us->max_speed_hz = ADE7754_SPI_FAST;
> +
> + ret = ade7754_spi_read_reg_8(dev, ADE7754_WAVMODE, ®);
> + if (ret)
> + return ret;
> +
> + reg &= ~(3 << 3);
> + reg |= t << 3;
> +
> + ret = ade7754_spi_write_reg_8(dev, ADE7754_WAVMODE, reg);
> +
> + return ret;
> +}
> +
> +static int ade7754_read_raw(struct iio_dev *indio_dev,
> + struct iio_chan_spec const *chan,
> + int *val, int *val2, long mask)
> +{
> + int ret;
> +
> + switch (mask) {
> + case IIO_CHAN_INFO_SAMP_FREQ:
> + if (val2)
> + return -EINVAL;
> + mutex_lock(&indio_dev->mlock);
> + ret = read_raw_samp_freq(&indio_dev->dev, val);
> + mutex_unlock(&indio_dev->mlock);
> + return ret;
> + default:
> + return -EINVAL;
> + }
> +
> + return ret;
> +}
> +
> +static int ade7754_write_raw(struct iio_dev *indio_dev,
> + struct iio_chan_spec const *chan,
> + int val, int val2, long mask)
> +{
> + int ret;
> +
> + switch (mask) {
> + case IIO_CHAN_INFO_SAMP_FREQ:
> + if (val2)
> + return -EINVAL;
> + mutex_lock(&indio_dev->mlock);
> + ret = write_raw_samp_freq(&indio_dev->dev, val);
> + mutex_unlock(&indio_dev->mlock);
> + return ret;
> + default:
> + return -EINVAL;
> + }
> +
> + return ret;
> +}
> +
> static const struct attribute_group ade7754_attribute_group = {
> .attrs = ade7754_attributes,
> };
> @@ -512,6 +533,8 @@ static const struct attribute_group ade7754_attribute_group = {
> static const struct iio_info ade7754_info = {
> .attrs = &ade7754_attribute_group,
> .driver_module = THIS_MODULE,
> + .read_raw = &ade7754_read_raw,
> + .write_raw = &ade7754_write_raw,
> };
>
> static int ade7754_probe(struct spi_device *spi)
> --
> 2.7.4
>
> --
> You received this message because you are subscribed to the Google Groups "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com.
> To post to this group, send email to outreachy-kernel@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/20161006160217.GA21538%40sayli-HP-15-Notebook-PC.
> For more options, visit https://groups.google.com/d/optout.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Outreachy kernel] [PATCH] staging: iio: meter: ade7754: Implement IIO_CHAN_INFO_SAMP_FREQ
2016-10-07 16:46 ` [Outreachy kernel] " Alison Schofield
@ 2016-10-09 7:36 ` Jonathan Cameron
0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Cameron @ 2016-10-09 7:36 UTC (permalink / raw)
To: Alison Schofield, sayli karnik
Cc: outreachy-kernel, Hartmut Knaack, Lars-Peter Clausen,
Peter Meerwald-Stadler, Greg Kroah-Hartman, linux-iio, Barry Song
On 07/10/16 17:46, Alison Schofield wrote:
> On Thu, Oct 06, 2016 at 09:32:17PM +0530, sayli karnik wrote:
>> Attributes that were once privately defined become standard with time
>> and hence a special global define is used. Hence update driver ade7754 to use
>> IIO_CHAN_INFO_SAMP_FREQ which is a global define instead of
>> IIO_DEV_ATTR_SAMP_FREQ.
>> Move functionality from IIO_DEV_ATTR_SAMP_FREQ attribute into
>> IIO_CHAN_INFO_SAMP_FREQ to implement the sampling_frequency attribute.
>> Add ade7754_read_raw() and ade7754_write_raw() to allow reading and
>> writing the element as well.
>> Signed-off-by: sayli karnik <karniksayli1995@gmail.com>
>
> Hi Sayli,
>
> This one looks similar to the ade7753 patch discussed on linux-iio
> recently. No channels defined hence no place to define the attribute.
> http://marc.info/?l=linux-iio&m=147552631607342&w=2
>
> alisons
>
Hmm.. I wouldn't necessarily advise going anywhere near this driver
without access to hardware. Probably also wants someone with
non trivial electrical experience (and a 3 phase power supply or
perhaps a 3 phase motor inverter might do - or custom test bench)
It should be possible to simulate it I suppose.
The driver needs a complete rethink from the bottom up.
Lars, are there any plans wrt to these power meter drivers?
Jonathan
>
>> ---
>> drivers/staging/iio/meter/ade7754.c | 155 +++++++++++++++++++++---------------
>> 1 file changed, 89 insertions(+), 66 deletions(-)
>>
>> diff --git a/drivers/staging/iio/meter/ade7754.c b/drivers/staging/iio/meter/ade7754.c
>> index 1730959..8043539 100644
>> --- a/drivers/staging/iio/meter/ade7754.c
>> +++ b/drivers/staging/iio/meter/ade7754.c
>> @@ -395,81 +395,15 @@ err_ret:
>> return ret;
>> }
>>
>> -static ssize_t ade7754_read_frequency(struct device *dev,
>> - struct device_attribute *attr,
>> - char *buf)
>> -{
>> - int ret;
>> - u8 t;
>> - int sps;
>> -
>> - ret = ade7754_spi_read_reg_8(dev, ADE7754_WAVMODE, &t);
>> - if (ret)
>> - return ret;
>> -
>> - t = (t >> 3) & 0x3;
>> - sps = 26000 / (1 + t);
>> -
>> - return sprintf(buf, "%d\n", sps);
>> -}
>> -
>> -static ssize_t ade7754_write_frequency(struct device *dev,
>> - struct device_attribute *attr,
>> - const char *buf,
>> - size_t len)
>> -{
>> - struct iio_dev *indio_dev = dev_to_iio_dev(dev);
>> - struct ade7754_state *st = iio_priv(indio_dev);
>> - u16 val;
>> - int ret;
>> - u8 reg, t;
>> -
>> - ret = kstrtou16(buf, 10, &val);
>> - if (ret)
>> - return ret;
>> - if (!val)
>> - return -EINVAL;
>> -
>> - mutex_lock(&indio_dev->mlock);
>> -
>> - t = 26000 / val;
>> - if (t > 0)
>> - t--;
>> -
>> - if (t > 1)
>> - st->us->max_speed_hz = ADE7754_SPI_SLOW;
>> - else
>> - st->us->max_speed_hz = ADE7754_SPI_FAST;
>> -
>> - ret = ade7754_spi_read_reg_8(dev, ADE7754_WAVMODE, ®);
>> - if (ret)
>> - goto out;
>> -
>> - reg &= ~(3 << 3);
>> - reg |= t << 3;
>> -
>> - ret = ade7754_spi_write_reg_8(dev, ADE7754_WAVMODE, reg);
>> -
>> -out:
>> - mutex_unlock(&indio_dev->mlock);
>> -
>> - return ret ? ret : len;
>> -}
>> static IIO_DEV_ATTR_TEMP_RAW(ade7754_read_8bit);
>> static IIO_CONST_ATTR(in_temp_offset, "129 C");
>> static IIO_CONST_ATTR(in_temp_scale, "4 C");
>> -
>> -static IIO_DEV_ATTR_SAMP_FREQ(S_IWUSR | S_IRUGO,
>> - ade7754_read_frequency,
>> - ade7754_write_frequency);
>> -
>> static IIO_CONST_ATTR_SAMP_FREQ_AVAIL("26000 13000 65000 33000");
>>
>> static struct attribute *ade7754_attributes[] = {
>> &iio_dev_attr_in_temp_raw.dev_attr.attr,
>> &iio_const_attr_in_temp_offset.dev_attr.attr,
>> &iio_const_attr_in_temp_scale.dev_attr.attr,
>> - &iio_dev_attr_sampling_frequency.dev_attr.attr,
>> &iio_const_attr_sampling_frequency_available.dev_attr.attr,
>> &iio_dev_attr_aenergy.dev_attr.attr,
>> &iio_dev_attr_laenergy.dev_attr.attr,
>> @@ -505,6 +439,93 @@ static struct attribute *ade7754_attributes[] = {
>> NULL,
>> };
>>
>> +static int read_raw_samp_freq(struct device *dev, int *val)
>> +{
>> + int ret;
>> + u8 t;
>> +
>> + ret = ade7754_spi_read_reg_8(dev, ADE7754_WAVMODE, &t);
>> + if (ret)
>> + return ret;
>> +
>> + t = (t >> 3) & 0x3;
>> + *val = 26000 / (1 + t);
>> +
>> + return 0;
>> +}
>> +
>> +static int write_raw_samp_freq(struct device *dev, int val)
>> +{
>> + struct ade7754_state *st = iio_priv(dev_to_iio_dev(dev));
>> + int ret;
>> + u8 reg, t;
>> +
>> + if (!val)
>> + return -EINVAL;
>> +
>> + t = 26000 / val;
>> + if (t > 0)
>> + t--;
>> +
>> + if (t > 1)
>> + st->us->max_speed_hz = ADE7754_SPI_SLOW;
>> + else
>> + st->us->max_speed_hz = ADE7754_SPI_FAST;
>> +
>> + ret = ade7754_spi_read_reg_8(dev, ADE7754_WAVMODE, ®);
>> + if (ret)
>> + return ret;
>> +
>> + reg &= ~(3 << 3);
>> + reg |= t << 3;
>> +
>> + ret = ade7754_spi_write_reg_8(dev, ADE7754_WAVMODE, reg);
>> +
>> + return ret;
>> +}
>> +
>> +static int ade7754_read_raw(struct iio_dev *indio_dev,
>> + struct iio_chan_spec const *chan,
>> + int *val, int *val2, long mask)
>> +{
>> + int ret;
>> +
>> + switch (mask) {
>> + case IIO_CHAN_INFO_SAMP_FREQ:
>> + if (val2)
>> + return -EINVAL;
>> + mutex_lock(&indio_dev->mlock);
>> + ret = read_raw_samp_freq(&indio_dev->dev, val);
>> + mutex_unlock(&indio_dev->mlock);
>> + return ret;
>> + default:
>> + return -EINVAL;
>> + }
>> +
>> + return ret;
>> +}
>> +
>> +static int ade7754_write_raw(struct iio_dev *indio_dev,
>> + struct iio_chan_spec const *chan,
>> + int val, int val2, long mask)
>> +{
>> + int ret;
>> +
>> + switch (mask) {
>> + case IIO_CHAN_INFO_SAMP_FREQ:
>> + if (val2)
>> + return -EINVAL;
>> + mutex_lock(&indio_dev->mlock);
>> + ret = write_raw_samp_freq(&indio_dev->dev, val);
>> + mutex_unlock(&indio_dev->mlock);
>> + return ret;
>> + default:
>> + return -EINVAL;
>> + }
>> +
>> + return ret;
>> +}
>> +
>> static const struct attribute_group ade7754_attribute_group = {
>> .attrs = ade7754_attributes,
>> };
>> @@ -512,6 +533,8 @@ static const struct attribute_group ade7754_attribute_group = {
>> static const struct iio_info ade7754_info = {
>> .attrs = &ade7754_attribute_group,
>> .driver_module = THIS_MODULE,
>> + .read_raw = &ade7754_read_raw,
>> + .write_raw = &ade7754_write_raw,
>> };
>>
>> static int ade7754_probe(struct spi_device *spi)
>> --
>> 2.7.4
>>
>> --
>> You received this message because you are subscribed to the Google Groups "outreachy-kernel" group.
>> To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com.
>> To post to this group, send email to outreachy-kernel@googlegroups.com.
>> To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/20161006160217.GA21538%40sayli-HP-15-Notebook-PC.
>> For more options, visit https://groups.google.com/d/optout.
> --
> 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
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-10-09 7:38 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-06 16:02 [PATCH] staging: iio: meter: ade7754: Implement IIO_CHAN_INFO_SAMP_FREQ sayli karnik
2016-10-07 16:46 ` [Outreachy kernel] " Alison Schofield
2016-10-09 7:36 ` Jonathan Cameron
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).