mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	Add a simple Analog to Digital Converter device based button driver. This driver binds to the 'adc-keys' device tree node. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
		
			
				
	
	
		
			8 lines
		
	
	
		
			233 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			233 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# SPDX-License-Identifier: GPL-2.0+
 | 
						|
#
 | 
						|
# Copyright (C) 2020 Philippe Reynes <philippe.reynes@softathome.com>
 | 
						|
 | 
						|
obj-$(CONFIG_BUTTON) += button-uclass.o
 | 
						|
obj-$(CONFIG_BUTTON_ADC) += button-adc.o
 | 
						|
obj-$(CONFIG_BUTTON_GPIO) += button-gpio.o
 |