Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1292257

[PATCH] iio: ina2xx: fix channel order in software buffer

From Marc Titinger <mtitinger@baylibre.com>
Newsgroups linux.kernel
Subject [PATCH] iio: ina2xx: fix channel order in software buffer
Date 2015-12-15 16:30 +0100
Message-ID <qFZI5-5X4-5@gated-at.bofh.it> (permalink)
References <qEVZT-50C-1@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


POWER and CURRENT were swapped out in the buffer:
was current2 and power3, correct order is power2 and current3.

Signed-off-by: Marc Titinger <mtitinger@baylibre.com>

---

Hi Jon,

we just found this while testing with the buffered mode.
My apologies for missing this bug ealier.

Cheers,
Marc.

---

 drivers/iio/adc/ina2xx-adc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/iio/adc/ina2xx-adc.c b/drivers/iio/adc/ina2xx-adc.c
index 98939ba..91e1f2b 100644
--- a/drivers/iio/adc/ina2xx-adc.c
+++ b/drivers/iio/adc/ina2xx-adc.c
@@ -427,8 +427,8 @@ static ssize_t ina2xx_shunt_resistor_store(struct device *dev,
 static const struct iio_chan_spec ina2xx_channels[] = {
 	INA2XX_CHAN_VOLTAGE(0, INA2XX_SHUNT_VOLTAGE),
 	INA2XX_CHAN_VOLTAGE(1, INA2XX_BUS_VOLTAGE),
-	INA2XX_CHAN(IIO_CURRENT, 2, INA2XX_CURRENT),
-	INA2XX_CHAN(IIO_POWER, 3, INA2XX_POWER),
+	INA2XX_CHAN(IIO_POWER, 2, INA2XX_POWER),
+	INA2XX_CHAN(IIO_CURRENT, 3, INA2XX_CURRENT),
 	IIO_CHAN_SOFT_TIMESTAMP(4),
 };
 
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Re: [PATCH v3 1/2] iio: ina2xx: add support for TI INA2xx Power  Monitors Jonathan Cameron <jic23@kernel.org> - 2015-12-12 18:20 +0100
  [PATCH] iio: ina2xx: fix channel order in software buffer Marc Titinger <mtitinger@baylibre.com> - 2015-12-15 16:30 +0100
    Re: [PATCH] iio: ina2xx: fix channel order in software buffer Jonathan Cameron <jic23@kernel.org> - 2015-12-19 16:10 +0100

csiph-web