diff mbox series

iio: pms7003: sleect IIO_TRIGGERED_BUFFER

Message ID 20190314090118.312040-1-arnd@arndb.de
State Accepted
Commit f6a7bf2ccf22db3e1b936ebc03898f9c025c051e
Headers show
Series iio: pms7003: sleect IIO_TRIGGERED_BUFFER | expand

Commit Message

Arnd Bergmann March 14, 2019, 9 a.m. UTC
Without IIO_TRIGGERED_BUFFER, this driver fails to link:

drivers/iio/chemical/pms7003.o: In function `pms7003_probe':
pms7003.c:(.text+0x21c): undefined reference to `devm_iio_triggered_buffer_setup'
pms7003.c:(.text+0x21c): relocation truncated to fit: R_AARCH64_CALL26 against undefined symbol `devm_iio_triggered_buffer_setup'

Fixes: a1d642266c14 ("iio: chemical: add support for Plantower PMS7003 sensor")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

---
 drivers/iio/chemical/Kconfig | 1 +
 1 file changed, 1 insertion(+)

-- 
2.20.0

Comments

Tomasz Duszynski March 14, 2019, 5:27 p.m. UTC | #1
On Thu, Mar 14, 2019 at 10:00:52AM +0100, Arnd Bergmann wrote:
> Without IIO_TRIGGERED_BUFFER, this driver fails to link:


Good catch, thanks (btw, perhaps typo in subject can be fixed before
applying patch).

Acked-by: Tomasz Duszynski <tduszyns@gmail.com>


>

> drivers/iio/chemical/pms7003.o: In function `pms7003_probe':

> pms7003.c:(.text+0x21c): undefined reference to `devm_iio_triggered_buffer_setup'

> pms7003.c:(.text+0x21c): relocation truncated to fit: R_AARCH64_CALL26 against undefined symbol `devm_iio_triggered_buffer_setup'

>

> Fixes: a1d642266c14 ("iio: chemical: add support for Plantower PMS7003 sensor")

> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

> ---

>  drivers/iio/chemical/Kconfig | 1 +

>  1 file changed, 1 insertion(+)

>

> diff --git a/drivers/iio/chemical/Kconfig b/drivers/iio/chemical/Kconfig

> index d5d146e9e372..6f253092a523 100644

> --- a/drivers/iio/chemical/Kconfig

> +++ b/drivers/iio/chemical/Kconfig

> @@ -64,6 +64,7 @@ config IAQCORE

>  config PMS7003

>  	tristate "Plantower PMS7003 particulate matter sensor"

>  	depends on SERIAL_DEV_BUS

> +	select IIO_TRIGGERED_BUFFER

>  	help

>  	  Say Y here to build support for the Plantower PMS7003 particulate

>  	  matter sensor.

> --

> 2.20.0

>
Jonathan Cameron March 16, 2019, 4:35 p.m. UTC | #2
On Thu, 14 Mar 2019 18:27:35 +0100
Tomasz Duszynski <tduszyns@gmail.com> wrote:

> On Thu, Mar 14, 2019 at 10:00:52AM +0100, Arnd Bergmann wrote:

> > Without IIO_TRIGGERED_BUFFER, this driver fails to link:  

> 

> Good catch, thanks (btw, perhaps typo in subject can be fixed before

> applying patch).

> 

> Acked-by: Tomasz Duszynski <tduszyns@gmail.com>

Applied to the fixes-togreg branch of iio.git with the typo
fixed.

Thanks!

Jonathan

> 

> >

> > drivers/iio/chemical/pms7003.o: In function `pms7003_probe':

> > pms7003.c:(.text+0x21c): undefined reference to `devm_iio_triggered_buffer_setup'

> > pms7003.c:(.text+0x21c): relocation truncated to fit: R_AARCH64_CALL26 against undefined symbol `devm_iio_triggered_buffer_setup'

> >

> > Fixes: a1d642266c14 ("iio: chemical: add support for Plantower PMS7003 sensor")

> > Signed-off-by: Arnd Bergmann <arnd@arndb.de>

> > ---

> >  drivers/iio/chemical/Kconfig | 1 +

> >  1 file changed, 1 insertion(+)

> >

> > diff --git a/drivers/iio/chemical/Kconfig b/drivers/iio/chemical/Kconfig

> > index d5d146e9e372..6f253092a523 100644

> > --- a/drivers/iio/chemical/Kconfig

> > +++ b/drivers/iio/chemical/Kconfig

> > @@ -64,6 +64,7 @@ config IAQCORE

> >  config PMS7003

> >  	tristate "Plantower PMS7003 particulate matter sensor"

> >  	depends on SERIAL_DEV_BUS

> > +	select IIO_TRIGGERED_BUFFER

> >  	help

> >  	  Say Y here to build support for the Plantower PMS7003 particulate

> >  	  matter sensor.

> > --

> > 2.20.0

> >
diff mbox series

Patch

diff --git a/drivers/iio/chemical/Kconfig b/drivers/iio/chemical/Kconfig
index d5d146e9e372..6f253092a523 100644
--- a/drivers/iio/chemical/Kconfig
+++ b/drivers/iio/chemical/Kconfig
@@ -64,6 +64,7 @@  config IAQCORE
 config PMS7003
 	tristate "Plantower PMS7003 particulate matter sensor"
 	depends on SERIAL_DEV_BUS
+	select IIO_TRIGGERED_BUFFER
 	help
 	  Say Y here to build support for the Plantower PMS7003 particulate
 	  matter sensor.