Searched hist:ecf7e207a55d8760734a9de5fba1a974628b92e5 (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/drivers/iio/humidity/ |
H A D | si7020.c | diff ecf7e207a55d8760734a9de5fba1a974628b92e5 Sun Aug 23 16:06:19 CDT 2015 Nicola Corna <nicola@corna.info> iio: humidity: si7020: replaced bitmask on humidity values with range check
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> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
|