extcon: Reorder the sequence of extcon device driver alphabetically
authorChanwoo Choi <cw00.choi@samsung.com>
Thu, 22 May 2014 05:01:51 +0000 (14:01 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Mon, 16 Jun 2014 04:33:18 +0000 (13:33 +0900)
This patch reorder the sequence of extcon device diver alphabetically
to imporbe readability.

Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
drivers/extcon/Kconfig
drivers/extcon/Makefile

index aebde489c2914d07173558d0909203d9ffd04ee4..9125eba6b3d60687a84532507424152721fac621 100644 (file)
@@ -14,6 +14,20 @@ if EXTCON
 
 comment "Extcon Device Drivers"
 
+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_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.
+
 config EXTCON_GPIO
        tristate "GPIO extcon support"
        depends on GPIOLIB
@@ -21,12 +35,6 @@ config EXTCON_GPIO
          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_MAX14577
        tristate "MAX14577/77836 EXTCON Support"
        depends on MFD_MAX14577
@@ -55,14 +63,6 @@ config EXTCON_MAX8997
          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.
-
 config EXTCON_PALMAS
        tristate "Palmas USB EXTCON support"
        depends on MFD_PALMAS
index bf7861ec090607b881fc3b75d4113c69f10bd2c4..e48abc6d230f6cac7f5ba9c024ea2fe760e51045 100644 (file)
@@ -1,12 +1,12 @@
-#
+
 # Makefile for external connector class (extcon) devices
 #
 
 obj-$(CONFIG_EXTCON)           += extcon-class.o
-obj-$(CONFIG_EXTCON_GPIO)      += extcon-gpio.o
 obj-$(CONFIG_EXTCON_ADC_JACK)  += extcon-adc-jack.o
+obj-$(CONFIG_EXTCON_ARIZONA)   += extcon-arizona.o
+obj-$(CONFIG_EXTCON_GPIO)      += extcon-gpio.o
 obj-$(CONFIG_EXTCON_MAX14577)  += extcon-max14577.o
 obj-$(CONFIG_EXTCON_MAX77693)  += extcon-max77693.o
 obj-$(CONFIG_EXTCON_MAX8997)   += extcon-max8997.o
-obj-$(CONFIG_EXTCON_ARIZONA)   += extcon-arizona.o
 obj-$(CONFIG_EXTCON_PALMAS)    += extcon-palmas.o
This page took 0.028202 seconds and 5 git commands to generate.