#
# Adc hardware configuration
#

choice
	prompt "ADC hardware drivers"
	default ADC_RK29 if ARCH_RK29
	default ADC_RK30 if ARCH_RK30

config ADC_NULL
	bool "NULL"

config ADC_RK28
	bool "RK28 adc interface"
        depends on ARCH_RK2818 || ARCH_RK2808 || ARCH_RK2816
	help
		This supports the use of the ADC interface on rk28 processors.

config ADC_RK29
	bool "RK29 adc interface"
        depends on ARCH_RK29
	help
		This supports the use of the ADC interface on rk29 processors.

config ADC_RK30
	bool "RK30 adc interface"
        depends on ARCH_RK30
	help
		This supports the use of the ADC interface on rk30 processors.
endchoice
