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

Commit ad28d315 authored by David Veenstra's avatar David Veenstra Committed by Jonathan Cameron
Browse files

staging: iio: ad2s1200: Move driver out of staging



Move the iio driver for the ad2s1200 and ad2s1205 resolver-to-digital
converter out of staging, into mainline iio subsystems.

Signed-off-by: default avatarDavid Veenstra <davidjulianveenstra@gmail.com>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 9c3e81ab
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -93,6 +93,7 @@ source "drivers/iio/potentiometer/Kconfig"
source "drivers/iio/potentiostat/Kconfig"
source "drivers/iio/pressure/Kconfig"
source "drivers/iio/proximity/Kconfig"
source "drivers/iio/resolver/Kconfig"
source "drivers/iio/temperature/Kconfig"

endif # IIO
+1 −0
Original line number Diff line number Diff line
@@ -36,5 +36,6 @@ obj-y += potentiometer/
obj-y += potentiostat/
obj-y += pressure/
obj-y += proximity/
obj-y += resolver/
obj-y += temperature/
obj-y += trigger/
+17 −0
Original line number Diff line number Diff line
#
# Resolver/Synchro drivers
#
menu "Resolver to digital converters"

config AD2S1200
	tristate "Analog Devices ad2s1200/ad2s1205 driver"
	depends on SPI
	depends on GPIOLIB || COMPILE_TEST
	help
	  Say yes here to build support for Analog Devices spi resolver
	  to digital converters, ad2s1200 and ad2s1205, provides direct access
	  via sysfs.

	  To compile this driver as a module, choose M here: the
	  module will be called ad2s1200.
endmenu
+5 −0
Original line number Diff line number Diff line
#
# Makefile for Resolver/Synchro drivers
#

obj-$(CONFIG_AD2S1200) += ad2s1200.o
Loading