Import an experimental ADC driver

SVN-Revision: 24814
This commit is contained in:
Claudio Mignanti
2010-12-23 15:20:26 +00:00
parent 69b7963402
commit cd540fed5b
5 changed files with 460 additions and 0 deletions

View File

@@ -35,3 +35,18 @@ define KernelPackage/pwm-atmel/description
endef
$(eval $(call KernelPackage,pwm-atmel))
define KernelPackage/at91-adc
SUBMENU:=$(OTHER_MENU)
TITLE:=ADC on atmel SoC
DEPENDS:=@TARGET_at91
KCONFIG:=CONFIG_AT91_ADC
FILES:=$(LINUX_DIR)/drivers/misc/at91-adc.ko
AUTOLOAD:=$(call AutoLoad,40,at91-adc)
endef
define KernelPackage/at91-adc/description
Kernel module to use the ADC channels of SoC
endef
$(eval $(call KernelPackage,at91-adc))