 105cf1fe1d
			
		
	
	
	105cf1fe1d
	
	
	
		
			
			More updates for v3.9, a mix of fixes for the code that's already there and a few new features. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iQIcBAABAgAGBQJRGRlTAAoJELSic+t+oim9lJkP/3x1GqmPUT8cOY4lVNbLuEwL VI0Y5V/ILGSKFWNxN4OE7BRh2biejWIM+xiqJFay1cRJtoa6v7N7s1WUnsupYQfK WYzWC14AIr3zGSDqaBS15EvNrykj2BN5FZ5fZNuq0GOHeSUu3pDmXtJoHeZ53irr 5aWXZM4TxAortjvbYujftW9/T4D3Zrg94dcc9tMKuK45qon01WlhCY5ibDtLMWSG bioMt+ilJmOycDni54iTx41etm9EaIAfk6sX5VjNxEX5kVsDgQdQJ8HUJ5pX5PM8 vvX5SnrSvI7AbaSztXAmmCdYrs5mWhsDw1cp+LVY4SDQjt0iBZaLKsg020NZ9iA0 PRgvtjJSuWKwmnAZ23iIgl0YCxUtwSp/dtoV1USGGNt6JxWf2YnHKptkLkVtEr5Q yqnSe1YIqdAQ+bbvbmn/ZDM7t8feodFD58/qE30efo+oekRYTB3FqkB0s/tALT6x TBswvhqMQAuP2lT9eqCUHYRL97Sxg6PJpcc8RlR5LGzj7bJ2+JjQPFC+mneK/1V0 NW/NgOckcFhjr+SY4Cd9KVlkokrv+yBlxPjgAkfA1dqRwmYLpmTvHqMYstrqEogA sFxT5bdmxPRi/Nq2z1K6zcEK/QAoiPUpUQrpvH9bcjq4NLEJ7s8/B7o++7Ga7TRH EtaN7kdl7seOVt7Jy/Cs =7J4T -----END PGP SIGNATURE----- Merge tag 'extcon-arizona-3.9' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/misc into char-misc-next Mark writes: extcon: arizona: Updates for v3.9 More updates for v3.9, a mix of fixes for the code that's already there and a few new features.
		
			
				
	
	
		
			56 lines
		
	
	
	
		
			1.8 KiB
			
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
	
		
			1.8 KiB
			
		
	
	
	
		
			Text
		
	
	
	
	
	
| menuconfig EXTCON
 | |
| 	tristate "External Connector Class (extcon) support"
 | |
| 	help
 | |
| 	  Say Y here to enable external connector class (extcon) support.
 | |
| 	  This allows monitoring external connectors by userspace
 | |
| 	  via sysfs and uevent and supports external connectors with
 | |
| 	  multiple states; i.e., an extcon that may have multiple
 | |
| 	  cables attached. For example, an external connector of a device
 | |
| 	  may be used to connect an HDMI cable and a AC adaptor, and to
 | |
| 	  host USB ports. Many of 30-pin connectors including PDMI are
 | |
| 	  also good examples.
 | |
| 
 | |
| if EXTCON
 | |
| 
 | |
| comment "Extcon Device Drivers"
 | |
| 
 | |
| config EXTCON_GPIO
 | |
| 	tristate "GPIO extcon support"
 | |
| 	depends on GENERIC_GPIO
 | |
| 	help
 | |
| 	  Say Y here to enable GPIO based extcon support. Note that GPIO
 | |
| 	  extcon supports single state per extcon instance.
 | |
| 
 | |
| config EXTCON_ADC_JACK
 | |
| 	tristate "ADC Jack extcon support"
 | |
| 	depends on IIO
 | |
| 	help
 | |
| 	  Say Y here to enable extcon device driver based on ADC values.
 | |
| 
 | |
| config EXTCON_MAX77693
 | |
| 	tristate "MAX77693 EXTCON Support"
 | |
| 	depends on MFD_MAX77693 && INPUT
 | |
| 	select IRQ_DOMAIN
 | |
| 	select REGMAP_I2C
 | |
| 	help
 | |
| 	  If you say yes here you get support for the MUIC device of
 | |
| 	  Maxim MAX77693 PMIC. The MAX77693 MUIC is a USB port accessory
 | |
| 	  detector and switch.
 | |
| 
 | |
| config EXTCON_MAX8997
 | |
| 	tristate "MAX8997 EXTCON Support"
 | |
| 	depends on MFD_MAX8997 && IRQ_DOMAIN
 | |
| 	help
 | |
| 	  If you say yes here you get support for the MUIC device of
 | |
| 	  Maxim MAX8997 PMIC. The MAX8997 MUIC is a USB port accessory
 | |
| 	  detector and switch.
 | |
| 
 | |
| config EXTCON_ARIZONA
 | |
| 	tristate "Wolfson Arizona EXTCON support"
 | |
| 	depends on MFD_ARIZONA && INPUT && SND_SOC
 | |
| 	help
 | |
| 	  Say Y here to enable support for external accessory detection
 | |
| 	  with Wolfson Arizona devices. These are audio CODECs with
 | |
| 	  advanced audio accessory detection support.
 | |
| 
 | |
| endif # MULTISTATE_SWITCH
 |