* [PATCH] iio: accel: fxls8962af: select IIO_BUFFER & IIO_KFIFO_BUF
@ 2024-06-05 20:38 A. Sverdlin
2024-06-06 7:01 ` Sean Nyekjaer
0 siblings, 1 reply; 3+ messages in thread
From: A. Sverdlin @ 2024-06-05 20:38 UTC (permalink / raw)
To: linux-iio
Cc: Alexander Sverdlin, Jonathan Cameron, Lars-Peter Clausen,
Sean Nyekjaer, stable
From: Alexander Sverdlin <alexander.sverdlin@siemens.com>
Provide missing symbols to the module:
ERROR: modpost: iio_push_to_buffers [drivers/iio/accel/fxls8962af-core.ko] undefined!
ERROR: modpost: devm_iio_kfifo_buffer_setup_ext [drivers/iio/accel/fxls8962af-core.ko] undefined!
Cc: stable@vger.kernel.org
Fixes: 79e3a5bdd9ef ("iio: accel: fxls8962af: add hw buffered sampling")
Signed-off-by: Alexander Sverdlin <alexander.sverdlin@siemens.com>
---
drivers/iio/accel/Kconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/iio/accel/Kconfig b/drivers/iio/accel/Kconfig
index c2da5066e9a7b..80b57d3ee3a72 100644
--- a/drivers/iio/accel/Kconfig
+++ b/drivers/iio/accel/Kconfig
@@ -330,6 +330,8 @@ config DMARD10
config FXLS8962AF
tristate
depends on I2C || !I2C # cannot be built-in for modular I2C
+ select IIO_BUFFER
+ select IIO_KFIFO_BUF
config FXLS8962AF_I2C
tristate "NXP FXLS8962AF/FXLS8964AF Accelerometer I2C Driver"
--
2.45.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] iio: accel: fxls8962af: select IIO_BUFFER & IIO_KFIFO_BUF
2024-06-05 20:38 [PATCH] iio: accel: fxls8962af: select IIO_BUFFER & IIO_KFIFO_BUF A. Sverdlin
@ 2024-06-06 7:01 ` Sean Nyekjaer
2024-06-08 17:53 ` Jonathan Cameron
0 siblings, 1 reply; 3+ messages in thread
From: Sean Nyekjaer @ 2024-06-06 7:01 UTC (permalink / raw)
To: A. Sverdlin; +Cc: linux-iio, Jonathan Cameron, Lars-Peter Clausen, stable
On Wed, Jun 05, 2024 at 10:38:06PM UTC, A. Sverdlin wrote:
> From: Alexander Sverdlin <alexander.sverdlin@siemens.com>
>
> Provide missing symbols to the module:
> ERROR: modpost: iio_push_to_buffers [drivers/iio/accel/fxls8962af-core.ko] undefined!
> ERROR: modpost: devm_iio_kfifo_buffer_setup_ext [drivers/iio/accel/fxls8962af-core.ko] undefined!
>
> Cc: stable@vger.kernel.org
> Fixes: 79e3a5bdd9ef ("iio: accel: fxls8962af: add hw buffered sampling")
> Signed-off-by: Alexander Sverdlin <alexander.sverdlin@siemens.com>
Reviewed-by: Sean Nyekjaer <sean@geanix.com>
> ---
> drivers/iio/accel/Kconfig | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/iio/accel/Kconfig b/drivers/iio/accel/Kconfig
> index c2da5066e9a7b..80b57d3ee3a72 100644
> --- a/drivers/iio/accel/Kconfig
> +++ b/drivers/iio/accel/Kconfig
> @@ -330,6 +330,8 @@ config DMARD10
> config FXLS8962AF
> tristate
> depends on I2C || !I2C # cannot be built-in for modular I2C
> + select IIO_BUFFER
> + select IIO_KFIFO_BUF
>
> config FXLS8962AF_I2C
> tristate "NXP FXLS8962AF/FXLS8964AF Accelerometer I2C Driver"
> --
> 2.45.2
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] iio: accel: fxls8962af: select IIO_BUFFER & IIO_KFIFO_BUF
2024-06-06 7:01 ` Sean Nyekjaer
@ 2024-06-08 17:53 ` Jonathan Cameron
0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Cameron @ 2024-06-08 17:53 UTC (permalink / raw)
To: Sean Nyekjaer; +Cc: A. Sverdlin, linux-iio, Lars-Peter Clausen, stable
On Thu, 6 Jun 2024 09:01:10 +0200
Sean Nyekjaer <sean@geanix.com> wrote:
> On Wed, Jun 05, 2024 at 10:38:06PM UTC, A. Sverdlin wrote:
> > From: Alexander Sverdlin <alexander.sverdlin@siemens.com>
> >
> > Provide missing symbols to the module:
> > ERROR: modpost: iio_push_to_buffers [drivers/iio/accel/fxls8962af-core.ko] undefined!
> > ERROR: modpost: devm_iio_kfifo_buffer_setup_ext [drivers/iio/accel/fxls8962af-core.ko] undefined!
> >
> > Cc: stable@vger.kernel.org
> > Fixes: 79e3a5bdd9ef ("iio: accel: fxls8962af: add hw buffered sampling")
> > Signed-off-by: Alexander Sverdlin <alexander.sverdlin@siemens.com>
> Reviewed-by: Sean Nyekjaer <sean@geanix.com>
Applied to the fixes-togreg branch of iio.git.
Thanks,
Jonathan
> > ---
> > drivers/iio/accel/Kconfig | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/drivers/iio/accel/Kconfig b/drivers/iio/accel/Kconfig
> > index c2da5066e9a7b..80b57d3ee3a72 100644
> > --- a/drivers/iio/accel/Kconfig
> > +++ b/drivers/iio/accel/Kconfig
> > @@ -330,6 +330,8 @@ config DMARD10
> > config FXLS8962AF
> > tristate
> > depends on I2C || !I2C # cannot be built-in for modular I2C
> > + select IIO_BUFFER
> > + select IIO_KFIFO_BUF
> >
> > config FXLS8962AF_I2C
> > tristate "NXP FXLS8962AF/FXLS8964AF Accelerometer I2C Driver"
> > --
> > 2.45.2
> >
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-06-08 17:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-05 20:38 [PATCH] iio: accel: fxls8962af: select IIO_BUFFER & IIO_KFIFO_BUF A. Sverdlin
2024-06-06 7:01 ` Sean Nyekjaer
2024-06-08 17:53 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox