public inbox for linux-hwmon@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH 0/2] iio: humidity: sht31: add Sensirion SHT31 support
       [not found]     ` <f26e218318cd07bdb857f67b1357f36e@jic23.retrosnub.co.uk>
@ 2016-06-14 19:01       ` Matt Ranostay
  2016-06-15  4:18         ` Guenter Roeck
  0 siblings, 1 reply; 5+ messages in thread
From: Matt Ranostay @ 2016-06-14 19:01 UTC (permalink / raw)
  To: Jonathan Cameron, Guenter Roeck, linux-hwmon, david.frey
  Cc: Alison Schofield, linux-iio@vger.kernel.org, Jonathan Cameron

Hello Guenter et al,

So seems I wrote an iio driver for the SHT31 chipset about the same
David Frey had his merged into hwmon tree. So was wondering per
Jonathan's comments what your input on this would be.

>From what I can see the additional functionality of the hrtimer
trigger + rather fast update/integration time that a case could be
made because of the triggered buffer.

Now there is some functionality missing from my iio driver than exists
in the hwmon.. like the thermal and humidity trip points (but that can
be handled in a userspace HAL anyway), and the non-clock skewing
read/write functionality (this can be easily added).

Thanks,

Matt



On Tue, Jun 14, 2016 at 12:44 AM,  <jic23@jic23.retrosnub.co.uk> wrote:
> On 14.06.2016 00:23, Matt Ranostay wrote:
>>
>> Didn't notice that will till now, and looking at the timestamp I see why
>> :).
>> However this is more for the sw triggered buffer support which hwmon
>> lacks... there is a few examples of this already in the tree.
>>
>> Maybe Jonathan and Peter will have some input on this.
>>
> Thanks for highlighting this Alison.  Not the first time we have had
> simultaneous driver postings under review for both IIO and
> HWMON unfortunately.
>
> The hwmon guys are fairly flexible iff there is a good reason to want stuff
> that is in IIO.  The original hwmon humidity driver was actually my fault
> as it slipped in when hwmon was effectively not maintained (Andrew Morton
> was
> babysitting).  People on their side have always been a bit split on humidity
> drivers and whether they are within their scope.
>
> Anyhow, best bet is to email their list (perhaps reply to the driver thread)
> to make sure everyone knows this is going on (cc linux-iio as well).
> Then we can work out how to move forward.
>
> Two drivers, one in each place is a non starter for new parts.  We have
> ended up with a few instances, but it's mostly been a case of a driver
> with much wider scope ending up covering parts that were already in hwmon.
> Also a very small number of devices have moved across from hwmon to IIO.
>
> In this particular case the sensor is reasonably fast so there is at
> least some argument for IIO support. Note I tend to stay out of these
> and let the driver author work on convincing Guenter / Jean
> (they are very reasonable and responsive!) Only thing I'll say is that
> I'm more than happy to have this in IIO if the hwmon guys don't mind.
>
> Jonathan
>
>> On Mon, Jun 13, 2016 at 3:25 PM, Alison Schofield <amsfield22@gmail.com>
>> wrote:
>>>
>>> On Sat, Jun 11, 2016 at 10:13:15PM -0700, Matt Ranostay wrote:
>>>>
>>>> Add support for the humidity and temperature functionally for the SHT31
>>>> chipset. In addition add support for using using software triggers.
>>>
>>>
>>> Now that I'm hwmon-aware ;)  I see this same driver under review in
>>> hwmon.
>>> Can support exist in 2 places?
>>>
>>> alisons
>>>
>>>>
>>>> Matt Ranostay (2):
>>>>   devicetree: add Sensirion AG vendor id
>>>>   iio: humidity: sht31: add Sensirion SHT31 support
>>>>
>>>>  .../devicetree/bindings/i2c/trivial-devices.txt    |   1 +
>>>>  .../devicetree/bindings/vendor-prefixes.txt        |   1 +
>>>>  drivers/iio/humidity/Kconfig                       |  11 +
>>>>  drivers/iio/humidity/Makefile                      |   1 +
>>>>  drivers/iio/humidity/sht31.c                       | 416
>>>> +++++++++++++++++++++
>>>>  5 files changed, 430 insertions(+)
>>>>  create mode 100644 drivers/iio/humidity/sht31.c
>>>>
>>>> --
>>>> 2.7.4
>>>>
>>>> --
>>>> 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] 5+ messages in thread

* Re: [PATCH 0/2] iio: humidity: sht31: add Sensirion SHT31 support
  2016-06-14 19:01       ` [PATCH 0/2] iio: humidity: sht31: add Sensirion SHT31 support Matt Ranostay
@ 2016-06-15  4:18         ` Guenter Roeck
  2016-06-15 16:31           ` Jonathan Cameron
  0 siblings, 1 reply; 5+ messages in thread
From: Guenter Roeck @ 2016-06-15  4:18 UTC (permalink / raw)
  To: Matt Ranostay, Jonathan Cameron, linux-hwmon, david.frey
  Cc: Alison Schofield, linux-iio@vger.kernel.org, Jonathan Cameron

On 06/14/2016 12:01 PM, Matt Ranostay wrote:
> Hello Guenter et al,
>
> So seems I wrote an iio driver for the SHT31 chipset about the same
> David Frey had his merged into hwmon tree. So was wondering per
> Jonathan's comments what your input on this would be.
>
>>From what I can see the additional functionality of the hrtimer
> trigger + rather fast update/integration time that a case could be
> made because of the triggered buffer.
>
> Now there is some functionality missing from my iio driver than exists
> in the hwmon.. like the thermal and humidity trip points (but that can
> be handled in a userspace HAL anyway), and the non-clock skewing
> read/write functionality (this can be easily added).
>

I am quite sure that we had this discussion about this very driver before.
One of the key reasons for going with hwmon was limit register support.

Guess you claim that is no longer relevant since it can be handled in user space ?
If so, I would disagree; it seems to be difficult to generate an alert signal
from user space.

I don't mind if you folks want drivers for chips like like this (ie chips supporting
limits, or in other words typical hardware monitoring chips) in iio, but I would
kindly ask to enhance the iio subsystem to support limits.

It might be worth mentioning that at least for my part am not split on humidity
sensors. They are supported in high end servers and thus used for hardware monitoring.

Thanks,
Guenter

> Thanks,
>
> Matt
>
>
>
> On Tue, Jun 14, 2016 at 12:44 AM,  <jic23@jic23.retrosnub.co.uk> wrote:
>> On 14.06.2016 00:23, Matt Ranostay wrote:
>>>
>>> Didn't notice that will till now, and looking at the timestamp I see why
>>> :).
>>> However this is more for the sw triggered buffer support which hwmon
>>> lacks... there is a few examples of this already in the tree.
>>>
>>> Maybe Jonathan and Peter will have some input on this.
>>>
>> Thanks for highlighting this Alison.  Not the first time we have had
>> simultaneous driver postings under review for both IIO and
>> HWMON unfortunately.
>>
>> The hwmon guys are fairly flexible iff there is a good reason to want stuff
>> that is in IIO.  The original hwmon humidity driver was actually my fault
>> as it slipped in when hwmon was effectively not maintained (Andrew Morton
>> was
>> babysitting).  People on their side have always been a bit split on humidity
>> drivers and whether they are within their scope.
>>
>> Anyhow, best bet is to email their list (perhaps reply to the driver thread)
>> to make sure everyone knows this is going on (cc linux-iio as well).
>> Then we can work out how to move forward.
>>
>> Two drivers, one in each place is a non starter for new parts.  We have
>> ended up with a few instances, but it's mostly been a case of a driver
>> with much wider scope ending up covering parts that were already in hwmon.
>> Also a very small number of devices have moved across from hwmon to IIO.
>>
>> In this particular case the sensor is reasonably fast so there is at
>> least some argument for IIO support. Note I tend to stay out of these
>> and let the driver author work on convincing Guenter / Jean
>> (they are very reasonable and responsive!) Only thing I'll say is that
>> I'm more than happy to have this in IIO if the hwmon guys don't mind.
>>
>> Jonathan
>>
>>> On Mon, Jun 13, 2016 at 3:25 PM, Alison Schofield <amsfield22@gmail.com>
>>> wrote:
>>>>
>>>> On Sat, Jun 11, 2016 at 10:13:15PM -0700, Matt Ranostay wrote:
>>>>>
>>>>> Add support for the humidity and temperature functionally for the SHT31
>>>>> chipset. In addition add support for using using software triggers.
>>>>
>>>>
>>>> Now that I'm hwmon-aware ;)  I see this same driver under review in
>>>> hwmon.
>>>> Can support exist in 2 places?
>>>>
>>>> alisons
>>>>
>>>>>
>>>>> Matt Ranostay (2):
>>>>>    devicetree: add Sensirion AG vendor id
>>>>>    iio: humidity: sht31: add Sensirion SHT31 support
>>>>>
>>>>>   .../devicetree/bindings/i2c/trivial-devices.txt    |   1 +
>>>>>   .../devicetree/bindings/vendor-prefixes.txt        |   1 +
>>>>>   drivers/iio/humidity/Kconfig                       |  11 +
>>>>>   drivers/iio/humidity/Makefile                      |   1 +
>>>>>   drivers/iio/humidity/sht31.c                       | 416
>>>>> +++++++++++++++++++++
>>>>>   5 files changed, 430 insertions(+)
>>>>>   create mode 100644 drivers/iio/humidity/sht31.c
>>>>>
>>>>> --
>>>>> 2.7.4
>>>>>
>>>>> --
>>>>> 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
> --
> To unsubscribe from this list: send the line "unsubscribe linux-hwmon" 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] 5+ messages in thread

* Re: [PATCH 0/2] iio: humidity: sht31: add Sensirion SHT31 support
  2016-06-15  4:18         ` Guenter Roeck
@ 2016-06-15 16:31           ` Jonathan Cameron
  2016-06-15 18:48             ` Guenter Roeck
  0 siblings, 1 reply; 5+ messages in thread
From: Jonathan Cameron @ 2016-06-15 16:31 UTC (permalink / raw)
  To: Guenter Roeck, Matt Ranostay, linux-hwmon, david.frey
  Cc: Alison Schofield, linux-iio@vger.kernel.org, Jonathan Cameron



On 15 June 2016 05:18:05 BST, Guenter Roeck <linux@roeck-us.net> wrote:
>On 06/14/2016 12:01 PM, Matt Ranostay wrote:
>> Hello Guenter et al,
>>
>> So seems I wrote an iio driver for the SHT31 chipset about the same
>> David Frey had his merged into hwmon tree. So was wondering per
>> Jonathan's comments what your input on this would be.
>>
>>>From what I can see the additional functionality of the hrtimer
>> trigger + rather fast update/integration time that a case could be
>> made because of the triggered buffer.
>>
>> Now there is some functionality missing from my iio driver than
>exists
>> in the hwmon.. like the thermal and humidity trip points (but that
>can
>> be handled in a userspace HAL anyway), and the non-clock skewing
>> read/write functionality (this can be easily added).
>>
>
>I am quite sure that we had this discussion about this very driver
>before.
>One of the key reasons for going with hwmon was limit register support.
>
>Guess you claim that is no longer relevant since it can be handled in
>user space ?
>If so, I would disagree; it seems to be difficult to generate an alert
>signal
>from user space.
Agreed
>
>I don't mind if you folks want drivers for chips like like this (ie
>chips supporting
>limits, or in other words typical hardware monitoring chips) in iio,
>but I would
>kindly ask to enhance the iio subsystem to support limits.

It has done since day one via event chardev. Limitations are :
* One per channel per type per direction. (Didn't seem necessary at the time)
This obviously matters for hwmon chips.
* No in kernel interface yet so not pushed on to iio-hwmon bridge.
* Intended for interrupt type limits which do not always correspond to how all 
devices do it... there are ways around it but only indirectly.

All fixable and not actually directly relevant for this part (possibly the inkern
 interface is...)
>
>It might be worth mentioning that at least for my part am not split on
>humidity
>sensors. They are supported in high end servers and thus used for
>hardware monitoring.
Cool. Didn't know that.

Jonathan
>
>Thanks,
>Guenter
>
>> Thanks,
>>
>> Matt
>>
>>
>>
>> On Tue, Jun 14, 2016 at 12:44 AM,  <jic23@jic23.retrosnub.co.uk>
>wrote:
>>> On 14.06.2016 00:23, Matt Ranostay wrote:
>>>>
>>>> Didn't notice that will till now, and looking at the timestamp I
>see why
>>>> :).
>>>> However this is more for the sw triggered buffer support which
>hwmon
>>>> lacks... there is a few examples of this already in the tree.
>>>>
>>>> Maybe Jonathan and Peter will have some input on this.
>>>>
>>> Thanks for highlighting this Alison.  Not the first time we have had
>>> simultaneous driver postings under review for both IIO and
>>> HWMON unfortunately.
>>>
>>> The hwmon guys are fairly flexible iff there is a good reason to
>want stuff
>>> that is in IIO.  The original hwmon humidity driver was actually my
>fault
>>> as it slipped in when hwmon was effectively not maintained (Andrew
>Morton
>>> was
>>> babysitting).  People on their side have always been a bit split on
>humidity
>>> drivers and whether they are within their scope.
>>>
>>> Anyhow, best bet is to email their list (perhaps reply to the driver
>thread)
>>> to make sure everyone knows this is going on (cc linux-iio as well).
>>> Then we can work out how to move forward.
>>>
>>> Two drivers, one in each place is a non starter for new parts.  We
>have
>>> ended up with a few instances, but it's mostly been a case of a
>driver
>>> with much wider scope ending up covering parts that were already in
>hwmon.
>>> Also a very small number of devices have moved across from hwmon to
>IIO.
>>>
>>> In this particular case the sensor is reasonably fast so there is at
>>> least some argument for IIO support. Note I tend to stay out of
>these
>>> and let the driver author work on convincing Guenter / Jean
>>> (they are very reasonable and responsive!) Only thing I'll say is
>that
>>> I'm more than happy to have this in IIO if the hwmon guys don't
>mind.
>>>
>>> Jonathan
>>>
>>>> On Mon, Jun 13, 2016 at 3:25 PM, Alison Schofield
><amsfield22@gmail.com>
>>>> wrote:
>>>>>
>>>>> On Sat, Jun 11, 2016 at 10:13:15PM -0700, Matt Ranostay wrote:
>>>>>>
>>>>>> Add support for the humidity and temperature functionally for the
>SHT31
>>>>>> chipset. In addition add support for using using software
>triggers.
>>>>>
>>>>>
>>>>> Now that I'm hwmon-aware ;)  I see this same driver under review
>in
>>>>> hwmon.
>>>>> Can support exist in 2 places?
>>>>>
>>>>> alisons
>>>>>
>>>>>>
>>>>>> Matt Ranostay (2):
>>>>>>    devicetree: add Sensirion AG vendor id
>>>>>>    iio: humidity: sht31: add Sensirion SHT31 support
>>>>>>
>>>>>>   .../devicetree/bindings/i2c/trivial-devices.txt    |   1 +
>>>>>>   .../devicetree/bindings/vendor-prefixes.txt        |   1 +
>>>>>>   drivers/iio/humidity/Kconfig                       |  11 +
>>>>>>   drivers/iio/humidity/Makefile                      |   1 +
>>>>>>   drivers/iio/humidity/sht31.c                       | 416
>>>>>> +++++++++++++++++++++
>>>>>>   5 files changed, 430 insertions(+)
>>>>>>   create mode 100644 drivers/iio/humidity/sht31.c
>>>>>>
>>>>>> --
>>>>>> 2.7.4
>>>>>>
>>>>>> --
>>>>>> 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
>> --
>> To unsubscribe from this list: send the line "unsubscribe
>linux-hwmon" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>

-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 0/2] iio: humidity: sht31: add Sensirion SHT31 support
  2016-06-15 16:31           ` Jonathan Cameron
@ 2016-06-15 18:48             ` Guenter Roeck
  2016-06-15 19:34               ` Jonathan Cameron
  0 siblings, 1 reply; 5+ messages in thread
From: Guenter Roeck @ 2016-06-15 18:48 UTC (permalink / raw)
  To: Jonathan Cameron
  Cc: Matt Ranostay, linux-hwmon, david.frey, Alison Schofield,
	linux-iio@vger.kernel.org, Jonathan Cameron

On Wed, Jun 15, 2016 at 05:31:10PM +0100, Jonathan Cameron wrote:
> 
> 
> On 15 June 2016 05:18:05 BST, Guenter Roeck <linux@roeck-us.net> wrote:
> >On 06/14/2016 12:01 PM, Matt Ranostay wrote:
> >> Hello Guenter et al,
> >>
> >> So seems I wrote an iio driver for the SHT31 chipset about the same
> >> David Frey had his merged into hwmon tree. So was wondering per
> >> Jonathan's comments what your input on this would be.
> >>
> >>>From what I can see the additional functionality of the hrtimer
> >> trigger + rather fast update/integration time that a case could be
> >> made because of the triggered buffer.
> >>
> >> Now there is some functionality missing from my iio driver than
> >exists
> >> in the hwmon.. like the thermal and humidity trip points (but that
> >can
> >> be handled in a userspace HAL anyway), and the non-clock skewing
> >> read/write functionality (this can be easily added).
> >>
> >
> >I am quite sure that we had this discussion about this very driver
> >before.
> >One of the key reasons for going with hwmon was limit register support.
> >
> >Guess you claim that is no longer relevant since it can be handled in
> >user space ?
> >If so, I would disagree; it seems to be difficult to generate an alert
> >signal
> >from user space.
> Agreed
> >
> >I don't mind if you folks want drivers for chips like like this (ie
> >chips supporting
> >limits, or in other words typical hardware monitoring chips) in iio,
> >but I would
> >kindly ask to enhance the iio subsystem to support limits.
> 
> It has done since day one via event chardev. Limitations are :
> * One per channel per type per direction. (Didn't seem necessary at the time)
> This obviously matters for hwmon chips.
> * No in kernel interface yet so not pushed on to iio-hwmon bridge.
> * Intended for interrupt type limits which do not always correspond to how all 
> devices do it... there are ways around it but only indirectly.
> 
> All fixable and not actually directly relevant for this part (possibly the inkern
>  interface is...)

Sure, all is fixable. Not that it will help here.

If you plan to accept this driver, please let me and David know, and I'll drop
the hwmon driver. It means we'll both have wasted our time, but it does not make
sense to keep two drivers for this chip around.

On another side note, I don't really believe that it makes much sense to add all
this functionality to iio to start with. I'd rather fix the hwmon registration
API and create a hwmon->iio bridge.

Guenter

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 0/2] iio: humidity: sht31: add Sensirion SHT31 support
  2016-06-15 18:48             ` Guenter Roeck
@ 2016-06-15 19:34               ` Jonathan Cameron
  0 siblings, 0 replies; 5+ messages in thread
From: Jonathan Cameron @ 2016-06-15 19:34 UTC (permalink / raw)
  To: Guenter Roeck
  Cc: Matt Ranostay, linux-hwmon, david.frey, Alison Schofield,
	linux-iio@vger.kernel.org, Jonathan Cameron



On 15 June 2016 19:48:55 BST, Guenter Roeck <linux@roeck-us.net> wrote:
>On Wed, Jun 15, 2016 at 05:31:10PM +0100, Jonathan Cameron wrote:
>> 
>> 
>> On 15 June 2016 05:18:05 BST, Guenter Roeck <linux@roeck-us.net>
>wrote:
>> >On 06/14/2016 12:01 PM, Matt Ranostay wrote:
>> >> Hello Guenter et al,
>> >>
>> >> So seems I wrote an iio driver for the SHT31 chipset about the
>same
>> >> David Frey had his merged into hwmon tree. So was wondering per
>> >> Jonathan's comments what your input on this would be.
>> >>
>> >>>From what I can see the additional functionality of the hrtimer
>> >> trigger + rather fast update/integration time that a case could be
>> >> made because of the triggered buffer.
>> >>
>> >> Now there is some functionality missing from my iio driver than
>> >exists
>> >> in the hwmon.. like the thermal and humidity trip points (but that
>> >can
>> >> be handled in a userspace HAL anyway), and the non-clock skewing
>> >> read/write functionality (this can be easily added).
>> >>
>> >
>> >I am quite sure that we had this discussion about this very driver
>> >before.
>> >One of the key reasons for going with hwmon was limit register
>support.
>> >
>> >Guess you claim that is no longer relevant since it can be handled
>in
>> >user space ?
>> >If so, I would disagree; it seems to be difficult to generate an
>alert
>> >signal
>> >from user space.
>> Agreed
>> >
>> >I don't mind if you folks want drivers for chips like like this (ie
>> >chips supporting
>> >limits, or in other words typical hardware monitoring chips) in iio,
>> >but I would
>> >kindly ask to enhance the iio subsystem to support limits.
>> 
>> It has done since day one via event chardev. Limitations are :
>> * One per channel per type per direction. (Didn't seem necessary at
>the time)
>> This obviously matters for hwmon chips.
>> * No in kernel interface yet so not pushed on to iio-hwmon bridge.
>> * Intended for interrupt type limits which do not always correspond
>to how all 
>> devices do it... there are ways around it but only indirectly.
>> 
>> All fixable and not actually directly relevant for this part
>(possibly the inkern
>>  interface is...)
>
>Sure, all is fixable. Not that it will help here.
Quite.
>
>If you plan to accept this driver, please let me and David know, and
>I'll drop
>the hwmon driver. It means we'll both have wasted our time, but it does
>not make
>sense to keep two drivers for this chip around.
I don't plan to accept it. The argument in favour has not been strong
enough for likely uses if this part. Humidity doesn't typically change
that fast. Would need a really strong usecase argument to persuade me...
(if anyone has one, now is the time to raise it!)

If the drivers had turned up in the other order I would been fine with
it in IIO. Sadly it happens sometimes and this time Matt loses!
Sorry Matt. 

However, whilst it is a bit tedious for everyone, I think we do
keep needing to debate the suitable home for border line drivers.
I don't think there really are any clear rules we can formulate
unfortunately.
>
>On another side note, I don't really believe that it makes much senses
>to add all
>this functionality to iio to start with. I'd rather fix the hwmon
>registration
>API and create a hwmon->iio bridge.
A worthy aim but I think you would either end up with some nasty name
of attr based hackery or a substantial part of the IIO stuff
reimplemented.  I wish I had more time to drive the plan to fully
separate the front end and back end of IIO to provide that
sort of 'minimal' hardware description interface. Annoyingly
we aren't actually that far away from it.

I am also unclear that there is that much point in doing hwmon
to IIO bridge in kernel space. Any general ADC driver that
would have uses outside hwmon that demand streaming data and
similar wouldn't work over such an interface anyway.
Anything else is polled via sysfs in both cases, a bit of name 
look up code and both can be supported by one library.

So for devices where the main usecase is probably relatively
slow polled reading, I personally don't feel it really
matters whether then end up in IIO of hwmon. Just comes
down to how they work with legacy interfaces (which
is pretty much all the iio-hwmon bridge is for).

Right now the unclear corners are 'unusual temperature sensors'
e.g. thermophiles, near infrared or high end theromcouple devices
where typically high speed drives them to IIO. (they change fast
because they are moving around quickly).

Humidity partly because a lot of the users are not coming from
hardware monitoring but rather environmental side of things.

General purpose ADCs - more historical I think where hwmon
was kind of the only option... + obviously there are specific
hardware monitoring focused parts where hwmon makes sense
as it has the interfaces tailored to these applications.

Anyhow, that's my 2 pence ;) I suspect we'll keep muddling
through but I absolutely agree that we should avoid two
drivers for the same part. 	

Maybe I should add a note in the relevant Kconfig files to
say if you are putting something here you'd better have a
good reason. Not sure anyone would notice though...

Jonathan
>
>Guenter
>--
>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] 5+ messages in thread

end of thread, other threads:[~2016-06-15 19:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1465708397-19649-1-git-send-email-mranostay@gmail.com>
     [not found] ` <20160613222502.GA4376@d830.WORKGROUP>
     [not found]   ` <CAKzfze_=URjXxePW4+P_Y8OUrgoMiC90Nzr=3ey+G=ZHKsRxCA@mail.gmail.com>
     [not found]     ` <f26e218318cd07bdb857f67b1357f36e@jic23.retrosnub.co.uk>
2016-06-14 19:01       ` [PATCH 0/2] iio: humidity: sht31: add Sensirion SHT31 support Matt Ranostay
2016-06-15  4:18         ` Guenter Roeck
2016-06-15 16:31           ` Jonathan Cameron
2016-06-15 18:48             ` Guenter Roeck
2016-06-15 19:34               ` Jonathan Cameron

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox