mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 02:15:45 +01:00 
			
		
		
		
	The gpio-button driver depends on DM_GPIO, add it to Kconfig to avoid build errors. Signed-off-by: Michael Walle <michael@walle.cc> Reviewed-by: Stefan Roese <sr@denx.de>
		
			
				
	
	
		
			31 lines
		
	
	
		
			919 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			919 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| menu "Button Support"
 | |
| 
 | |
| config BUTTON
 | |
| 	bool "Enable button support"
 | |
| 	depends on DM
 | |
| 	help
 | |
| 	  Many boards have buttons which can be used to change behaviour (reset, ...).
 | |
| 	  U-Boot provides a uclass API to implement this feature. Button drivers
 | |
| 	  can provide access to board-specific buttons. Use of the device tree
 | |
| 	  for configuration is encouraged.
 | |
| 
 | |
| config BUTTON_ADC
 | |
| 	bool "Button adc"
 | |
| 	depends on BUTTON
 | |
| 	help
 | |
| 	  Enable support for buttons which are connected to Analog to Digital
 | |
| 	  Converter device. The ADC driver must use driver model. Buttons are
 | |
| 	  configured using the device tree.
 | |
| 
 | |
| config BUTTON_GPIO
 | |
| 	bool "Button gpio"
 | |
| 	depends on BUTTON
 | |
| 	depends on DM_GPIO
 | |
| 	help
 | |
| 	  Enable support for buttons which are connected to GPIO lines. These
 | |
| 	  GPIOs may be on the SoC or some other device which provides GPIOs.
 | |
| 	  The GPIO driver must used driver model. Buttons are configured using
 | |
| 	  the device tree.
 | |
| 
 | |
| endmenu
 |