Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d6b09bd8 authored by Lars-Peter Clausen's avatar Lars-Peter Clausen Committed by Jonathan Cameron
Browse files

staging:iio: Move adis16400 out of staging



This adis16400 driver is in pretty good shape now, so move it out of staging.

Signed-off-by: default avatarLars-Peter Clausen <lars@metafoo.de>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent f4c6d64b
Loading
Loading
Loading
Loading
+11 −0
Original line number Original line Diff line number Diff line
@@ -3,6 +3,17 @@
#
#
menu "Inertial measurement units"
menu "Inertial measurement units"


config ADIS16400
	tristate "Analog Devices ADIS16400 and similar IMU SPI driver"
	depends on SPI
	select IIO_ADIS_LIB
	select IIO_ADIS_LIB_BUFFER if IIO_BUFFER
	help
	  Say yes here to build support for Analog Devices adis16300, adis16344,
	  adis16350, adis16354, adis16355, adis16360, adis16362, adis16364,
	  adis16365, adis16400 and adis16405 triaxial inertial sensors
	  (adis16400 series also have magnetometers).

config ADIS16480
config ADIS16480
	tristate "Analog Devices ADIS16480 and similar IMU driver"
	tristate "Analog Devices ADIS16480 and similar IMU driver"
	depends on SPI
	depends on SPI
+3 −0
Original line number Original line Diff line number Diff line
@@ -2,6 +2,9 @@
# Makefile for Inertial Measurement Units
# Makefile for Inertial Measurement Units
#
#


adis16400-y             := adis16400_core.o
adis16400-$(CONFIG_IIO_BUFFER) += adis16400_buffer.o
obj-$(CONFIG_ADIS16400) += adis16400.o
obj-$(CONFIG_ADIS16480) += adis16480.o
obj-$(CONFIG_ADIS16480) += adis16480.o


adis_lib-y += adis.o
adis_lib-y += adis.o
Loading