projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
25bad54
)
iio: adc: ti-adc0832: make use of iio_for_each_active_channel()
author
Nuno Sa
<nuno.sa@analog.com>
Fri, 26 Jul 2024 08:23:02 +0000
(10:23 +0200)
committer
Jonathan Cameron
<Jonathan.Cameron@huawei.com>
Sat, 3 Aug 2024 09:13:42 +0000
(10:13 +0100)
Use iio_for_each_active_channel() to iterate over active channels
accessing '.masklength' so it can be annotated as __private when there are
no more direct users of it.
Signed-off-by: Nuno Sa <nuno.sa@analog.com>
Link:
https://patch.msgid.link/20240726-dev-iio-masklength-private3-v1-10-82913fc0fb87@analog.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/adc/ti-adc0832.c
patch
|
blob
|
history
diff --git
a/drivers/iio/adc/ti-adc0832.c
b/drivers/iio/adc/ti-adc0832.c
index
b11ce55
..
d7800e1
100644
(file)
--- a/
drivers/iio/adc/ti-adc0832.c
+++ b/
drivers/iio/adc/ti-adc0832.c
@@
-211,8
+211,7
@@
static irqreturn_t adc0832_trigger_handler(int irq, void *p)
mutex_lock(&adc->lock);
- for_each_set_bit(scan_index, indio_dev->active_scan_mask,
- indio_dev->masklength) {
+ iio_for_each_active_channel(indio_dev, scan_index) {
const struct iio_chan_spec *scan_chan =
&indio_dev->channels[scan_index];
int ret = adc0832_adc_conversion(adc, scan_chan->channel,