linux-iio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Hartmut Knaack <knaack.h@gmx.de>,
	Nicola Corna <nicola@corna.info>,
	Lars-Peter Clausen <lars@metafoo.de>,
	Peter Meerwald <pmeerw@pmeerw.net>
Cc: linux-iio@vger.kernel.org
Subject: Re: [PATCH v3 1/2] iio: humidity: si7020: replaced bitmask on humidity values with range check
Date: Sun, 23 Aug 2015 21:12:15 +0100	[thread overview]
Message-ID: <55DA291F.40403@kernel.org> (raw)
In-Reply-To: <55DA1A17.2020304@gmx.de>

On 23/08/15 20:08, Hartmut Knaack wrote:
> Jonathan Cameron schrieb am 23.08.2015 um 17:48:
>> On 23/08/15 13:34, Nicola Corna wrote:
>>> The maximum possible value for the relative humidity is 55575 (100%RH).
>>> This value, if shifted right by 2 bits, uses 14 bits and masking it with
>>> a 12 bit mask removes 2 meaningful bits.
>>> The masking has been replaced with a range check that sets the minimum
>>> value at 786 (0%RH) and the maximum at 13893 (99.998%RH).
>>>
>>> Signed-off-by: Nicola Corna <nicola@corna.info>
>>> Reviewed-by: Hartmut Knaack <knaack.h@gmx.de>
>> Applied.  I have taken the view that previously the driver
>> was 'limited' by this rather than a nasty bug.
>> Hence I've queued it up for the next merge window.
>> Applied to the togreg branch of iio.git
>>
> 
> This doesn't work, clamp_val() returns a result, which has to be assigned
> to a variable (*val) in this case. I thought I pointed that out in V2.
backed out...

(hadn't pushed it out anywhere yet anyway ;)

Thanks Harmut.
> 
>> Thanks,
>>
>> Jonathan
>>> ---
>>>  drivers/iio/humidity/si7020.c | 6 +++++-
>>>  1 file changed, 5 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/iio/humidity/si7020.c b/drivers/iio/humidity/si7020.c
>>> index fa3b809..06e6659 100644
>>> --- a/drivers/iio/humidity/si7020.c
>>> +++ b/drivers/iio/humidity/si7020.c
>>> @@ -57,8 +57,12 @@ static int si7020_read_raw(struct iio_dev *indio_dev,
>>>  		if (ret < 0)
>>>  			return ret;
>>>  		*val = ret >> 2;
>>> +		/*
>>> +		 * Humidity values can slightly exceed the 0-100%RH
>>> +		 * range and should be corrected by software
>>> +		 */
>>>  		if (chan->type == IIO_HUMIDITYRELATIVE)
>>> -			*val &= GENMASK(11, 0);
>>> +			clamp_val(*val, 786, 13893);
> 
> This needs to be: *val = clamp_val(...)

> 
>>>  		return IIO_VAL_INT;
>>>  	case IIO_CHAN_INFO_SCALE:
>>>  		if (chan->type == IIO_TEMP)
>>>
>>
>> --
>> 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:[~2015-08-23 20:12 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-23 12:34 [PATCH v3 1/2] iio: humidity: si7020: replaced bitmask on humidity values with range check Nicola Corna
2015-08-23 15:48 ` Jonathan Cameron
2015-08-23 19:08   ` Hartmut Knaack
2015-08-23 20:12     ` Jonathan Cameron [this message]
2015-08-23 20:58     ` Nicola Corna

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=55DA291F.40403@kernel.org \
    --to=jic23@kernel.org \
    --cc=knaack.h@gmx.de \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    --cc=nicola@corna.info \
    --cc=pmeerw@pmeerw.net \
    /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).