All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Nuno Sá" <nuno.sa@analog.com>
To: <linux-amlogic@lists.infradead.org>, <linux-imx@nxp.com>,
	<linux-iio@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-rockchip@lists.infradead.org>
Cc: "Heiko Stuebner" <heiko@sntech.de>,
	"Martin Blumenstingl" <martin.blumenstingl@googlemail.com>,
	"Neil Armstrong" <narmstrong@baylibre.com>,
	"Shawn Guo" <shawnguo@kernel.org>,
	"Lars-Peter Clausen" <lars@metafoo.de>,
	"Jyoti Bhayana" <jbhayana@google.com>,
	"Hans de Goede" <hdegoede@redhat.com>,
	"Andriy Tryshnivskyy" <andriy.tryshnivskyy@opensynergy.com>,
	"Pengutronix Kernel Team" <kernel@pengutronix.de>,
	"Miquel Raynal" <miquel.raynal@bootlin.com>,
	"Cixi Geng" <cixi.geng1@unisoc.com>,
	"Baolin Wang" <baolin.wang@linux.alibaba.com>,
	"Ciprian Regus" <ciprian.regus@analog.com>,
	"Fabio Estevam" <festevam@gmail.com>,
	"Nuno Sá" <nuno.sa@analog.com>,
	"Sascha Hauer" <s.hauer@pengutronix.de>,
	"Alexandru Ardelean" <aardelean@deviqon.com>,
	"Florian Boor" <florian.boor@kernelconcepts.de>,
	"Michael Hennerich" <Michael.Hennerich@analog.com>,
	"Orson Zhai" <orsonzhai@gmail.com>,
	"Chen-Yu Tsai" <wens@csie.org>,
	"Chunyan Zhang" <zhang.lyra@gmail.com>,
	"Vladimir Zapolskiy" <vz@mleia.com>,
	"Andy Shevchenko" <andy.shevchenko@gmail.com>,
	"Jerome Brunet" <jbrunet@baylibre.com>,
	"Haibo Chen" <haibo.chen@nxp.com>,
	"Kevin Hilman" <khilman@baylibre.com>,
	"Jonathan Cameron" <jic23@kernel.org>
Subject: [PATCH v2 05/16] iio: adc: ltc2947-core: do not use internal iio_dev lock
Date: Tue, 4 Oct 2022 15:48:58 +0200	[thread overview]
Message-ID: <20221004134909.1692021-6-nuno.sa@analog.com> (raw)
In-Reply-To: <20221004134909.1692021-1-nuno.sa@analog.com>

The iio_device lock is only meant for internal use. Hence define a
device local lock to protect against concurrent accesses.

While at it, properly include "mutex.h" for mutex related APIs.

Signed-off-by: Nuno Sá <nuno.sa@analog.com>
---
 drivers/iio/adc/ltc2497-core.c | 7 +++++--
 drivers/iio/adc/ltc2497.h      | 2 ++
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/iio/adc/ltc2497-core.c b/drivers/iio/adc/ltc2497-core.c
index f52d37af4d1f..996f6cbbed3c 100644
--- a/drivers/iio/adc/ltc2497-core.c
+++ b/drivers/iio/adc/ltc2497-core.c
@@ -10,6 +10,7 @@
 #include <linux/iio/iio.h>
 #include <linux/iio/driver.h>
 #include <linux/module.h>
+#include <linux/mutex.h>
 #include <linux/regulator/consumer.h>
 
 #include "ltc2497.h"
@@ -81,9 +82,9 @@ static int ltc2497core_read_raw(struct iio_dev *indio_dev,
 
 	switch (mask) {
 	case IIO_CHAN_INFO_RAW:
-		mutex_lock(&indio_dev->mlock);
+		mutex_lock(&ddata->lock);
 		ret = ltc2497core_read(ddata, chan->address, val);
-		mutex_unlock(&indio_dev->mlock);
+		mutex_unlock(&ddata->lock);
 		if (ret < 0)
 			return ret;
 
@@ -214,6 +215,8 @@ int ltc2497core_probe(struct device *dev, struct iio_dev *indio_dev)
 	ddata->addr_prev = LTC2497_CONFIG_DEFAULT;
 	ddata->time_prev = ktime_get();
 
+	mutex_init(&ddata->lock);
+
 	ret = iio_device_register(indio_dev);
 	if (ret < 0)
 		goto err_array_unregister;
diff --git a/drivers/iio/adc/ltc2497.h b/drivers/iio/adc/ltc2497.h
index e023de0d88c4..781519b52475 100644
--- a/drivers/iio/adc/ltc2497.h
+++ b/drivers/iio/adc/ltc2497.h
@@ -12,6 +12,8 @@ struct ltc2497_chip_info {
 struct ltc2497core_driverdata {
 	struct regulator *ref;
 	ktime_t	time_prev;
+	/* lock to protect against multiple access to the device */
+	struct mutex lock;
 	const struct ltc2497_chip_info	*chip_info;
 	u8 addr_prev;
 	int (*result_and_measure)(struct ltc2497core_driverdata *ddata,
-- 
2.37.3


WARNING: multiple messages have this Message-ID (diff)
From: "Nuno Sá" <nuno.sa@analog.com>
To: <linux-amlogic@lists.infradead.org>, <linux-imx@nxp.com>,
	<linux-iio@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-rockchip@lists.infradead.org>
Cc: "Heiko Stuebner" <heiko@sntech.de>,
	"Martin Blumenstingl" <martin.blumenstingl@googlemail.com>,
	"Neil Armstrong" <narmstrong@baylibre.com>,
	"Shawn Guo" <shawnguo@kernel.org>,
	"Lars-Peter Clausen" <lars@metafoo.de>,
	"Jyoti Bhayana" <jbhayana@google.com>,
	"Hans de Goede" <hdegoede@redhat.com>,
	"Andriy Tryshnivskyy" <andriy.tryshnivskyy@opensynergy.com>,
	"Pengutronix Kernel Team" <kernel@pengutronix.de>,
	"Miquel Raynal" <miquel.raynal@bootlin.com>,
	"Cixi Geng" <cixi.geng1@unisoc.com>,
	"Baolin Wang" <baolin.wang@linux.alibaba.com>,
	"Ciprian Regus" <ciprian.regus@analog.com>,
	"Fabio Estevam" <festevam@gmail.com>,
	"Nuno Sá" <nuno.sa@analog.com>,
	"Sascha Hauer" <s.hauer@pengutronix.de>,
	"Alexandru Ardelean" <aardelean@deviqon.com>,
	"Florian Boor" <florian.boor@kernelconcepts.de>,
	"Michael Hennerich" <Michael.Hennerich@analog.com>,
	"Orson Zhai" <orsonzhai@gmail.com>,
	"Chen-Yu Tsai" <wens@csie.org>,
	"Chunyan Zhang" <zhang.lyra@gmail.com>,
	"Vladimir Zapolskiy" <vz@mleia.com>,
	"Andy Shevchenko" <andy.shevchenko@gmail.com>,
	"Jerome Brunet" <jbrunet@baylibre.com>,
	"Haibo Chen" <haibo.chen@nxp.com>,
	"Kevin Hilman" <khilman@baylibre.com>,
	"Jonathan Cameron" <jic23@kernel.org>
Subject: [PATCH v2 05/16] iio: adc: ltc2947-core: do not use internal iio_dev lock
Date: Tue, 4 Oct 2022 15:48:58 +0200	[thread overview]
Message-ID: <20221004134909.1692021-6-nuno.sa@analog.com> (raw)
In-Reply-To: <20221004134909.1692021-1-nuno.sa@analog.com>

The iio_device lock is only meant for internal use. Hence define a
device local lock to protect against concurrent accesses.

While at it, properly include "mutex.h" for mutex related APIs.

Signed-off-by: Nuno Sá <nuno.sa@analog.com>
---
 drivers/iio/adc/ltc2497-core.c | 7 +++++--
 drivers/iio/adc/ltc2497.h      | 2 ++
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/iio/adc/ltc2497-core.c b/drivers/iio/adc/ltc2497-core.c
index f52d37af4d1f..996f6cbbed3c 100644
--- a/drivers/iio/adc/ltc2497-core.c
+++ b/drivers/iio/adc/ltc2497-core.c
@@ -10,6 +10,7 @@
 #include <linux/iio/iio.h>
 #include <linux/iio/driver.h>
 #include <linux/module.h>
+#include <linux/mutex.h>
 #include <linux/regulator/consumer.h>
 
 #include "ltc2497.h"
@@ -81,9 +82,9 @@ static int ltc2497core_read_raw(struct iio_dev *indio_dev,
 
 	switch (mask) {
 	case IIO_CHAN_INFO_RAW:
-		mutex_lock(&indio_dev->mlock);
+		mutex_lock(&ddata->lock);
 		ret = ltc2497core_read(ddata, chan->address, val);
-		mutex_unlock(&indio_dev->mlock);
+		mutex_unlock(&ddata->lock);
 		if (ret < 0)
 			return ret;
 
@@ -214,6 +215,8 @@ int ltc2497core_probe(struct device *dev, struct iio_dev *indio_dev)
 	ddata->addr_prev = LTC2497_CONFIG_DEFAULT;
 	ddata->time_prev = ktime_get();
 
+	mutex_init(&ddata->lock);
+
 	ret = iio_device_register(indio_dev);
 	if (ret < 0)
 		goto err_array_unregister;
diff --git a/drivers/iio/adc/ltc2497.h b/drivers/iio/adc/ltc2497.h
index e023de0d88c4..781519b52475 100644
--- a/drivers/iio/adc/ltc2497.h
+++ b/drivers/iio/adc/ltc2497.h
@@ -12,6 +12,8 @@ struct ltc2497_chip_info {
 struct ltc2497core_driverdata {
 	struct regulator *ref;
 	ktime_t	time_prev;
+	/* lock to protect against multiple access to the device */
+	struct mutex lock;
 	const struct ltc2497_chip_info	*chip_info;
 	u8 addr_prev;
 	int (*result_and_measure)(struct ltc2497core_driverdata *ddata,
-- 
2.37.3


_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip

WARNING: multiple messages have this Message-ID (diff)
From: "Nuno Sá" <nuno.sa@analog.com>
To: <linux-amlogic@lists.infradead.org>, <linux-imx@nxp.com>,
	<linux-iio@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-rockchip@lists.infradead.org>
Cc: "Heiko Stuebner" <heiko@sntech.de>,
	"Martin Blumenstingl" <martin.blumenstingl@googlemail.com>,
	"Neil Armstrong" <narmstrong@baylibre.com>,
	"Shawn Guo" <shawnguo@kernel.org>,
	"Lars-Peter Clausen" <lars@metafoo.de>,
	"Jyoti Bhayana" <jbhayana@google.com>,
	"Hans de Goede" <hdegoede@redhat.com>,
	"Andriy Tryshnivskyy" <andriy.tryshnivskyy@opensynergy.com>,
	"Pengutronix Kernel Team" <kernel@pengutronix.de>,
	"Miquel Raynal" <miquel.raynal@bootlin.com>,
	"Cixi Geng" <cixi.geng1@unisoc.com>,
	"Baolin Wang" <baolin.wang@linux.alibaba.com>,
	"Ciprian Regus" <ciprian.regus@analog.com>,
	"Fabio Estevam" <festevam@gmail.com>,
	"Nuno Sá" <nuno.sa@analog.com>,
	"Sascha Hauer" <s.hauer@pengutronix.de>,
	"Alexandru Ardelean" <aardelean@deviqon.com>,
	"Florian Boor" <florian.boor@kernelconcepts.de>,
	"Michael Hennerich" <Michael.Hennerich@analog.com>,
	"Orson Zhai" <orsonzhai@gmail.com>,
	"Chen-Yu Tsai" <wens@csie.org>,
	"Chunyan Zhang" <zhang.lyra@gmail.com>,
	"Vladimir Zapolskiy" <vz@mleia.com>,
	"Andy Shevchenko" <andy.shevchenko@gmail.com>,
	"Jerome Brunet" <jbrunet@baylibre.com>,
	"Haibo Chen" <haibo.chen@nxp.com>,
	"Kevin Hilman" <khilman@baylibre.com>,
	"Jonathan Cameron" <jic23@kernel.org>
Subject: [PATCH v2 05/16] iio: adc: ltc2947-core: do not use internal iio_dev lock
Date: Tue, 4 Oct 2022 15:48:58 +0200	[thread overview]
Message-ID: <20221004134909.1692021-6-nuno.sa@analog.com> (raw)
In-Reply-To: <20221004134909.1692021-1-nuno.sa@analog.com>

The iio_device lock is only meant for internal use. Hence define a
device local lock to protect against concurrent accesses.

While at it, properly include "mutex.h" for mutex related APIs.

Signed-off-by: Nuno Sá <nuno.sa@analog.com>
---
 drivers/iio/adc/ltc2497-core.c | 7 +++++--
 drivers/iio/adc/ltc2497.h      | 2 ++
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/iio/adc/ltc2497-core.c b/drivers/iio/adc/ltc2497-core.c
index f52d37af4d1f..996f6cbbed3c 100644
--- a/drivers/iio/adc/ltc2497-core.c
+++ b/drivers/iio/adc/ltc2497-core.c
@@ -10,6 +10,7 @@
 #include <linux/iio/iio.h>
 #include <linux/iio/driver.h>
 #include <linux/module.h>
+#include <linux/mutex.h>
 #include <linux/regulator/consumer.h>
 
 #include "ltc2497.h"
@@ -81,9 +82,9 @@ static int ltc2497core_read_raw(struct iio_dev *indio_dev,
 
 	switch (mask) {
 	case IIO_CHAN_INFO_RAW:
-		mutex_lock(&indio_dev->mlock);
+		mutex_lock(&ddata->lock);
 		ret = ltc2497core_read(ddata, chan->address, val);
-		mutex_unlock(&indio_dev->mlock);
+		mutex_unlock(&ddata->lock);
 		if (ret < 0)
 			return ret;
 
@@ -214,6 +215,8 @@ int ltc2497core_probe(struct device *dev, struct iio_dev *indio_dev)
 	ddata->addr_prev = LTC2497_CONFIG_DEFAULT;
 	ddata->time_prev = ktime_get();
 
+	mutex_init(&ddata->lock);
+
 	ret = iio_device_register(indio_dev);
 	if (ret < 0)
 		goto err_array_unregister;
diff --git a/drivers/iio/adc/ltc2497.h b/drivers/iio/adc/ltc2497.h
index e023de0d88c4..781519b52475 100644
--- a/drivers/iio/adc/ltc2497.h
+++ b/drivers/iio/adc/ltc2497.h
@@ -12,6 +12,8 @@ struct ltc2497_chip_info {
 struct ltc2497core_driverdata {
 	struct regulator *ref;
 	ktime_t	time_prev;
+	/* lock to protect against multiple access to the device */
+	struct mutex lock;
 	const struct ltc2497_chip_info	*chip_info;
 	u8 addr_prev;
 	int (*result_and_measure)(struct ltc2497core_driverdata *ddata,
-- 
2.37.3


_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

WARNING: multiple messages have this Message-ID (diff)
From: "Nuno Sá" <nuno.sa@analog.com>
To: <linux-amlogic@lists.infradead.org>, <linux-imx@nxp.com>,
	<linux-iio@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-rockchip@lists.infradead.org>
Cc: "Heiko Stuebner" <heiko@sntech.de>,
	"Martin Blumenstingl" <martin.blumenstingl@googlemail.com>,
	"Neil Armstrong" <narmstrong@baylibre.com>,
	"Shawn Guo" <shawnguo@kernel.org>,
	"Lars-Peter Clausen" <lars@metafoo.de>,
	"Jyoti Bhayana" <jbhayana@google.com>,
	"Hans de Goede" <hdegoede@redhat.com>,
	"Andriy Tryshnivskyy" <andriy.tryshnivskyy@opensynergy.com>,
	"Pengutronix Kernel Team" <kernel@pengutronix.de>,
	"Miquel Raynal" <miquel.raynal@bootlin.com>,
	"Cixi Geng" <cixi.geng1@unisoc.com>,
	"Baolin Wang" <baolin.wang@linux.alibaba.com>,
	"Ciprian Regus" <ciprian.regus@analog.com>,
	"Fabio Estevam" <festevam@gmail.com>,
	"Nuno Sá" <nuno.sa@analog.com>,
	"Sascha Hauer" <s.hauer@pengutronix.de>,
	"Alexandru Ardelean" <aardelean@deviqon.com>,
	"Florian Boor" <florian.boor@kernelconcepts.de>,
	"Michael Hennerich" <Michael.Hennerich@analog.com>,
	"Orson Zhai" <orsonzhai@gmail.com>,
	"Chen-Yu Tsai" <wens@csie.org>,
	"Chunyan Zhang" <zhang.lyra@gmail.com>,
	"Vladimir Zapolskiy" <vz@mleia.com>,
	"Andy Shevchenko" <andy.shevchenko@gmail.com>,
	"Jerome Brunet" <jbrunet@baylibre.com>,
	"Haibo Chen" <haibo.chen@nxp.com>,
	"Kevin Hilman" <khilman@baylibre.com>,
	"Jonathan Cameron" <jic23@kernel.org>
Subject: [PATCH v2 05/16] iio: adc: ltc2947-core: do not use internal iio_dev lock
Date: Tue, 4 Oct 2022 15:48:58 +0200	[thread overview]
Message-ID: <20221004134909.1692021-6-nuno.sa@analog.com> (raw)
In-Reply-To: <20221004134909.1692021-1-nuno.sa@analog.com>

The iio_device lock is only meant for internal use. Hence define a
device local lock to protect against concurrent accesses.

While at it, properly include "mutex.h" for mutex related APIs.

Signed-off-by: Nuno Sá <nuno.sa@analog.com>
---
 drivers/iio/adc/ltc2497-core.c | 7 +++++--
 drivers/iio/adc/ltc2497.h      | 2 ++
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/iio/adc/ltc2497-core.c b/drivers/iio/adc/ltc2497-core.c
index f52d37af4d1f..996f6cbbed3c 100644
--- a/drivers/iio/adc/ltc2497-core.c
+++ b/drivers/iio/adc/ltc2497-core.c
@@ -10,6 +10,7 @@
 #include <linux/iio/iio.h>
 #include <linux/iio/driver.h>
 #include <linux/module.h>
+#include <linux/mutex.h>
 #include <linux/regulator/consumer.h>
 
 #include "ltc2497.h"
@@ -81,9 +82,9 @@ static int ltc2497core_read_raw(struct iio_dev *indio_dev,
 
 	switch (mask) {
 	case IIO_CHAN_INFO_RAW:
-		mutex_lock(&indio_dev->mlock);
+		mutex_lock(&ddata->lock);
 		ret = ltc2497core_read(ddata, chan->address, val);
-		mutex_unlock(&indio_dev->mlock);
+		mutex_unlock(&ddata->lock);
 		if (ret < 0)
 			return ret;
 
@@ -214,6 +215,8 @@ int ltc2497core_probe(struct device *dev, struct iio_dev *indio_dev)
 	ddata->addr_prev = LTC2497_CONFIG_DEFAULT;
 	ddata->time_prev = ktime_get();
 
+	mutex_init(&ddata->lock);
+
 	ret = iio_device_register(indio_dev);
 	if (ret < 0)
 		goto err_array_unregister;
diff --git a/drivers/iio/adc/ltc2497.h b/drivers/iio/adc/ltc2497.h
index e023de0d88c4..781519b52475 100644
--- a/drivers/iio/adc/ltc2497.h
+++ b/drivers/iio/adc/ltc2497.h
@@ -12,6 +12,8 @@ struct ltc2497_chip_info {
 struct ltc2497core_driverdata {
 	struct regulator *ref;
 	ktime_t	time_prev;
+	/* lock to protect against multiple access to the device */
+	struct mutex lock;
 	const struct ltc2497_chip_info	*chip_info;
 	u8 addr_prev;
 	int (*result_and_measure)(struct ltc2497core_driverdata *ddata,
-- 
2.37.3


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2022-10-04 13:49 UTC|newest]

Thread overview: 199+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-04 13:48 [PATCH v2 00/16] Make 'mlock' really private Nuno Sá
2022-10-04 13:48 ` Nuno Sá
2022-10-04 13:48 ` Nuno Sá
2022-10-04 13:48 ` Nuno Sá
2022-10-04 13:48 ` [PATCH v2 01/16] iio: adc: ad799x: do not use internal iio_dev lock Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-09 11:53   ` Jonathan Cameron
2022-10-09 11:53     ` Jonathan Cameron
2022-10-09 11:53     ` Jonathan Cameron
2022-10-09 11:53     ` Jonathan Cameron
2022-10-04 13:48 ` [PATCH v2 02/16] iio: adc: axp288_adc: " Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-09 11:55   ` Jonathan Cameron
2022-10-09 11:55     ` Jonathan Cameron
2022-10-09 11:55     ` Jonathan Cameron
2022-10-09 11:55     ` Jonathan Cameron
2022-10-04 13:48 ` [PATCH v2 03/16] iio: adc: imx7d_adc: " Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-09  2:00   ` Bough Chen
2022-10-09  2:00     ` Bough Chen
2022-10-09  2:00     ` Bough Chen
2022-10-09  2:00     ` Bough Chen
2022-10-09 11:56     ` Jonathan Cameron
2022-10-09 11:56       ` Jonathan Cameron
2022-10-09 11:56       ` Jonathan Cameron
2022-10-09 11:56       ` Jonathan Cameron
2022-10-04 13:48 ` [PATCH v2 04/16] iio: adc: lpc32xx_adc: " Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-09 11:57   ` Jonathan Cameron
2022-10-09 11:57     ` Jonathan Cameron
2022-10-09 11:57     ` Jonathan Cameron
2022-10-09 11:57     ` Jonathan Cameron
2022-10-04 13:48 ` Nuno Sá [this message]
2022-10-04 13:48   ` [PATCH v2 05/16] iio: adc: ltc2947-core: " Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-09 11:58   ` Jonathan Cameron
2022-10-09 11:58     ` Jonathan Cameron
2022-10-09 11:58     ` Jonathan Cameron
2022-10-09 11:58     ` Jonathan Cameron
2022-10-04 13:48 ` [PATCH v2 06/16] iio: adc: meson_saradc: " Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-04 13:48   ` Nuno Sá
2022-10-09 12:01   ` Jonathan Cameron
2022-10-09 12:01     ` Jonathan Cameron
2022-10-09 12:01     ` Jonathan Cameron
2022-10-09 12:01     ` Jonathan Cameron
2022-10-04 13:49 ` [PATCH v2 07/16] iio: adc: rockchip_saradc: " Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-05  7:44   ` Heiko Stübner
2022-10-05  7:44     ` Heiko Stübner
2022-10-05  7:44     ` Heiko Stübner
2022-10-09 12:03     ` Jonathan Cameron
2022-10-09 12:03       ` Jonathan Cameron
2022-10-09 12:03       ` Jonathan Cameron
2022-10-09 12:03       ` Jonathan Cameron
2022-10-04 13:49 ` [PATCH v2 08/16] iio: adc: sc27xx_adc: " Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-09 12:05   ` Jonathan Cameron
2022-10-09 12:05     ` Jonathan Cameron
2022-10-09 12:05     ` Jonathan Cameron
2022-10-09 12:05     ` Jonathan Cameron
2022-10-04 13:49 ` [PATCH v2 09/16] iio: adc: vf610_adc: add helper function to read samples Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-09  2:10   ` Bough Chen
2022-10-09  2:10     ` Bough Chen
2022-10-09  2:10     ` Bough Chen
2022-10-09  2:10     ` Bough Chen
2022-10-04 13:49 ` [PATCH v2 10/16] iio: adc: vf610_adc: vf610_adc: do not use internal iio_dev lock Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-09  2:10   ` Bough Chen
2022-10-09  2:10     ` Bough Chen
2022-10-09  2:10     ` Bough Chen
2022-10-09  2:10     ` Bough Chen
2022-10-04 13:49 ` [PATCH v2 11/16] iio: common: scmi_iio: " Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-09 12:09   ` Jonathan Cameron
2022-10-09 12:09     ` Jonathan Cameron
2022-10-09 12:09     ` Jonathan Cameron
2022-10-09 12:09     ` Jonathan Cameron
2022-10-04 13:49 ` [PATCH v2 12/16] iio: gyro: itg3200_core: " Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-09 12:10   ` Jonathan Cameron
2022-10-09 12:10     ` Jonathan Cameron
2022-10-09 12:10     ` Jonathan Cameron
2022-10-09 12:10     ` Jonathan Cameron
2022-10-04 13:49 ` [PATCH v2 13/16] iio: core: introduce iio_device_{claim|release}_buffer_mode() APIs Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 14:08   ` Andy Shevchenko
2022-10-04 14:08     ` Andy Shevchenko
2022-10-04 14:08     ` Andy Shevchenko
2022-10-04 14:08     ` Andy Shevchenko
2022-10-05  8:37     ` Nuno Sá
2022-10-05  8:37       ` Nuno Sá
2022-10-05  8:37       ` Nuno Sá
2022-10-05  8:37       ` Nuno Sá
2022-10-09 11:41       ` Jonathan Cameron
2022-10-09 11:41         ` Jonathan Cameron
2022-10-09 11:41         ` Jonathan Cameron
2022-10-09 11:41         ` Jonathan Cameron
2022-10-10  7:03         ` Nuno Sá
2022-10-10  7:03           ` Nuno Sá
2022-10-10  7:03           ` Nuno Sá
2022-10-10  7:03           ` Nuno Sá
2022-10-04 13:49 ` [PATCH v2 14/16] iio: health: max30100: do not use internal iio_dev lock Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 14:13   ` Andy Shevchenko
2022-10-04 14:13     ` Andy Shevchenko
2022-10-04 14:13     ` Andy Shevchenko
2022-10-04 14:13     ` Andy Shevchenko
2022-10-05  8:09     ` Nuno Sá
2022-10-05  8:09       ` Nuno Sá
2022-10-05  8:09       ` Nuno Sá
2022-10-05  8:09       ` Nuno Sá
2022-10-09 12:14       ` Jonathan Cameron
2022-10-09 12:14         ` Jonathan Cameron
2022-10-09 12:14         ` Jonathan Cameron
2022-10-09 12:14         ` Jonathan Cameron
2022-10-04 13:49 ` [PATCH v2 15/16] iio: health: max30102: " Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 14:15   ` Andy Shevchenko
2022-10-04 14:15     ` Andy Shevchenko
2022-10-04 14:15     ` Andy Shevchenko
2022-10-04 14:15     ` Andy Shevchenko
2022-10-05  8:17     ` Nuno Sá
2022-10-05  8:17       ` Nuno Sá
2022-10-05  8:17       ` Nuno Sá
2022-10-05  8:17       ` Nuno Sá
2022-10-09 11:44       ` Jonathan Cameron
2022-10-09 11:44         ` Jonathan Cameron
2022-10-09 11:44         ` Jonathan Cameron
2022-10-09 11:44         ` Jonathan Cameron
2022-10-09 12:16         ` Jonathan Cameron
2022-10-09 12:16           ` Jonathan Cameron
2022-10-09 12:16           ` Jonathan Cameron
2022-10-09 12:16           ` Jonathan Cameron
2022-10-10  7:08         ` Nuno Sá
2022-10-10  7:08           ` Nuno Sá
2022-10-10  7:08           ` Nuno Sá
2022-10-10  7:08           ` Nuno Sá
2022-10-04 13:49 ` [PATCH v2 16/16] iio: core: move 'mlock' to 'struct iio_dev_opaque' Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 13:49   ` Nuno Sá
2022-10-04 14:21   ` Andy Shevchenko
2022-10-04 14:21     ` Andy Shevchenko
2022-10-04 14:21     ` Andy Shevchenko
2022-10-04 14:21     ` Andy Shevchenko
2022-10-05  8:40     ` Nuno Sá
2022-10-05  8:40       ` Nuno Sá
2022-10-05  8:40       ` Nuno Sá
2022-10-05  8:40       ` Nuno Sá
2022-10-09 11:48       ` Jonathan Cameron
2022-10-09 11:48         ` Jonathan Cameron
2022-10-09 11:48         ` Jonathan Cameron
2022-10-09 11:48         ` Jonathan Cameron
2022-10-09 11:52     ` Jonathan Cameron
2022-10-09 11:52       ` Jonathan Cameron
2022-10-09 11:52       ` Jonathan Cameron
2022-10-09 11:52       ` Jonathan Cameron
2022-10-10  8:30       ` Andy Shevchenko
2022-10-10  8:30         ` Andy Shevchenko
2022-10-10  8:30         ` Andy Shevchenko
2022-10-10  8:30         ` Andy Shevchenko
2022-10-09 12:19   ` Jonathan Cameron
2022-10-09 12:19     ` Jonathan Cameron
2022-10-09 12:19     ` Jonathan Cameron
2022-10-09 12:19     ` Jonathan Cameron
2022-10-10  7:11     ` Nuno Sá
2022-10-10  7:11       ` Nuno Sá
2022-10-10  7:11       ` Nuno Sá
2022-10-10  7:11       ` Nuno Sá

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221004134909.1692021-6-nuno.sa@analog.com \
    --to=nuno.sa@analog.com \
    --cc=Michael.Hennerich@analog.com \
    --cc=aardelean@deviqon.com \
    --cc=andriy.tryshnivskyy@opensynergy.com \
    --cc=andy.shevchenko@gmail.com \
    --cc=baolin.wang@linux.alibaba.com \
    --cc=ciprian.regus@analog.com \
    --cc=cixi.geng1@unisoc.com \
    --cc=festevam@gmail.com \
    --cc=florian.boor@kernelconcepts.de \
    --cc=haibo.chen@nxp.com \
    --cc=hdegoede@redhat.com \
    --cc=heiko@sntech.de \
    --cc=jbhayana@google.com \
    --cc=jbrunet@baylibre.com \
    --cc=jic23@kernel.org \
    --cc=kernel@pengutronix.de \
    --cc=khilman@baylibre.com \
    --cc=lars@metafoo.de \
    --cc=linux-amlogic@lists.infradead.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-imx@nxp.com \
    --cc=linux-rockchip@lists.infradead.org \
    --cc=martin.blumenstingl@googlemail.com \
    --cc=miquel.raynal@bootlin.com \
    --cc=narmstrong@baylibre.com \
    --cc=orsonzhai@gmail.com \
    --cc=s.hauer@pengutronix.de \
    --cc=shawnguo@kernel.org \
    --cc=vz@mleia.com \
    --cc=wens@csie.org \
    --cc=zhang.lyra@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.