Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

iio: stx104: Move to addac subdirectory

The stx104 driver supports both ADC and DAC functionality.

Signed-off-by: William Breathitt Gray <william.gray@linaro.org>
Link: https://lore.kernel.org/r/20220815222921.138945-1-william.gray@linaro.org
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>

authored by

William Breathitt Gray and committed by
Jonathan Cameron
955c2aa9 83856aaa

+18 -18
+1 -1
MAINTAINERS
··· 1374 1374 M: William Breathitt Gray <william.gray@linaro.org> 1375 1375 L: linux-iio@vger.kernel.org 1376 1376 S: Maintained 1377 - F: drivers/iio/adc/stx104.c 1377 + F: drivers/iio/addac/stx104.c 1378 1378 1379 1379 APM DRIVER 1380 1380 M: Jiri Kosina <jikos@kernel.org>
-16
drivers/iio/adc/Kconfig
··· 1037 1037 Say yes here to build support for ST Microelectronics STMPE 1038 1038 built-in ADC block (stmpe811). 1039 1039 1040 - config STX104 1041 - tristate "Apex Embedded Systems STX104 driver" 1042 - depends on PC104 && X86 1043 - select ISA_BUS_API 1044 - select GPIOLIB 1045 - help 1046 - Say yes here to build support for the Apex Embedded Systems STX104 1047 - integrated analog PC/104 card. 1048 - 1049 - This driver supports the 16 channels of single-ended (8 channels of 1050 - differential) analog inputs, 2 channels of analog output, 4 digital 1051 - inputs, and 4 digital outputs provided by the STX104. 1052 - 1053 - The base port addresses for the devices may be configured via the base 1054 - array module parameter. 1055 - 1056 1040 config SUN4I_GPADC 1057 1041 tristate "Support for the Allwinner SoCs GPADC" 1058 1042 depends on IIO
-1
drivers/iio/adc/Makefile
··· 89 89 obj-$(CONFIG_RZG2L_ADC) += rzg2l_adc.o 90 90 obj-$(CONFIG_SC27XX_ADC) += sc27xx_adc.o 91 91 obj-$(CONFIG_SPEAR_ADC) += spear_adc.o 92 - obj-$(CONFIG_STX104) += stx104.o 93 92 obj-$(CONFIG_SUN4I_GPADC) += sun4i-gpadc-iio.o 94 93 obj-$(CONFIG_STM32_ADC_CORE) += stm32-adc-core.o 95 94 obj-$(CONFIG_STM32_ADC) += stm32-adc.o
drivers/iio/adc/stx104.c drivers/iio/addac/stx104.c
+16
drivers/iio/addac/Kconfig
··· 17 17 To compile this driver as a module, choose M here: the 18 18 module will be called ad74413r. 19 19 20 + config STX104 21 + tristate "Apex Embedded Systems STX104 driver" 22 + depends on PC104 && X86 23 + select ISA_BUS_API 24 + select GPIOLIB 25 + help 26 + Say yes here to build support for the Apex Embedded Systems STX104 27 + integrated analog PC/104 card. 28 + 29 + This driver supports the 16 channels of single-ended (8 channels of 30 + differential) analog inputs, 2 channels of analog output, 4 digital 31 + inputs, and 4 digital outputs provided by the STX104. 32 + 33 + The base port addresses for the devices may be configured via the base 34 + array module parameter. 35 + 20 36 endmenu
+1
drivers/iio/addac/Makefile
··· 5 5 6 6 # When adding new entries keep the list in alphabetical order 7 7 obj-$(CONFIG_AD74413R) += ad74413r.o 8 + obj-$(CONFIG_STX104) += stx104.o