From: David Lechner Date: Tue, 18 Feb 2025 23:17:46 +0000 (-0600) Subject: iio: adc: ad4695: simplify getting oversampling_ratio X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=38f898e0b54f5f1e7db92bec755fb55115d43de8;p=users%2Fjedix%2Flinux-maple.git iio: adc: ad4695: simplify getting oversampling_ratio We already have a local variable that holds a pointer to st->channels_cfg[chan->scan_index]. Use that to simplify the code. Signed-off-by: David Lechner Reviewed-by: Trevor Gamblin Reviewed-by: Nuno Sá Link: https://patch.msgid.link/20250218-iio-adc-ad4695-fix-out-of-bounds-array-access-v1-2-57fef8c7a3fd@baylibre.com Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/adc/ad4695.c b/drivers/iio/adc/ad4695.c index d42dea494302..8222c8ab2940 100644 --- a/drivers/iio/adc/ad4695.c +++ b/drivers/iio/adc/ad4695.c @@ -1175,7 +1175,7 @@ static int ad4695_read_raw(struct iio_dev *indio_dev, case IIO_CHAN_INFO_OVERSAMPLING_RATIO: switch (chan->type) { case IIO_VOLTAGE: - *val = st->channels_cfg[chan->scan_index].oversampling_ratio; + *val = cfg->oversampling_ratio; return IIO_VAL_INT; default: return -EINVAL;