linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] iio: remove unnecessary condition judgment in am2315_trigger_handler
@ 2018-09-08 10:57 zhong jiang
  2018-09-08 12:29 ` Himanshu Jha
  0 siblings, 1 reply; 6+ messages in thread
From: zhong jiang @ 2018-09-08 10:57 UTC (permalink / raw)
  To: jic23; +Cc: knaack.h, lars, pmeerw, linux-iio, linux-kernel

The iterator in for_each_set_bit is never null, therefore, remove
the redundant conditional judgment.

Signed-off-by: zhong jiang <zhongjiang@huawei.com>
---
 drivers/iio/humidity/am2315.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/iio/humidity/am2315.c b/drivers/iio/humidity/am2315.c
index 7d8669d..dc12e37 100644
--- a/drivers/iio/humidity/am2315.c
+++ b/drivers/iio/humidity/am2315.c
@@ -176,8 +176,7 @@ static irqreturn_t am2315_trigger_handler(int irq, void *p)
 		i = 0;
 		for_each_set_bit(bit, indio_dev->active_scan_mask,
 				 indio_dev->masklength) {
-			data->buffer[i] = (bit ? sensor_data.temp_data :
-						 sensor_data.hum_data);
+			data->buffer[i] = sensor_data.temp_data;
 			i++;
 		}
 	}
-- 
1.7.12.4


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

end of thread, other threads:[~2018-09-11  1:16 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-08 10:57 [PATCH] iio: remove unnecessary condition judgment in am2315_trigger_handler zhong jiang
2018-09-08 12:29 ` Himanshu Jha
2018-09-08 14:17   ` Jonathan Cameron
2018-09-10 13:49     ` zhong jiang
2018-09-11  1:16       ` zhong jiang
2018-09-10 15:57     ` David Frey

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).