zephyr/drivers/adc/Makefile
Andrew Boie c93a4789cb drivers: adc: add system call handlers
Straightforward conversion for adc_enable/disable.

adc_read() uses a sequence table, which points to an array
of struct adc_seq_entry, each element pointing
to memory buffers. Need to validate all of these as being readable
by the caller, and the buffers writable.

Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
2017-10-30 13:20:19 -07:00

8 lines
304 B
Makefile

obj-$(CONFIG_ADC_DW) += adc_dw.o
obj-$(CONFIG_ADC_MCUX_ADC16) += adc_mcux_adc16.o
obj-$(CONFIG_ADC_TI_ADC108S102) += adc_ti_adc108s102.o
obj-$(CONFIG_ADC_QMSI) += adc_qmsi.o
obj-$(CONFIG_ADC_QMSI_SS) += adc_qmsi_ss.o
obj-$(CONFIG_ADC_SAM_AFEC) += adc_sam_afec.o
obj-$(CONFIG_USERSPACE) += adc_handlers.o