Linux IIO development
 help / color / mirror / Atom feed
* [PATCH] iio: dac: ad5446: Fix read_raw not returning set value
@ 2022-04-06 10:56 michael.hennerich
  2022-04-07  9:10 ` Sa, Nuno
  2022-04-10 16:45 ` Jonathan Cameron
  0 siblings, 2 replies; 3+ messages in thread
From: michael.hennerich @ 2022-04-06 10:56 UTC (permalink / raw)
  To: jic23, lars; +Cc: linux-iio, Michael Hennerich

From: Michael Hennerich <michael.hennerich@analog.com>

read_raw should return the un-scaled value.

Fixes: 5e06bdfb46e8b ("staging:iio:dac:ad5446: Return cached value for 'raw' attribute")

Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
---
 drivers/iio/dac/ad5446.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/iio/dac/ad5446.c b/drivers/iio/dac/ad5446.c
index 14cfabacbea5..fdf824041497 100644
--- a/drivers/iio/dac/ad5446.c
+++ b/drivers/iio/dac/ad5446.c
@@ -178,7 +178,7 @@ static int ad5446_read_raw(struct iio_dev *indio_dev,
 
 	switch (m) {
 	case IIO_CHAN_INFO_RAW:
-		*val = st->cached_val;
+		*val = st->cached_val >> chan->scan_type.shift;
 		return IIO_VAL_INT;
 	case IIO_CHAN_INFO_SCALE:
 		*val = st->vref_mv;
-- 
2.25.1


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

end of thread, other threads:[~2022-04-10 16:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-06 10:56 [PATCH] iio: dac: ad5446: Fix read_raw not returning set value michael.hennerich
2022-04-07  9:10 ` Sa, Nuno
2022-04-10 16:45 ` Jonathan Cameron

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox