diff options
| author | MyungJoo Ham <myungjoo.ham@samsung.com> | 2012-08-10 11:33:46 +0900 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-08-16 10:42:11 -0700 | 
| commit | 0ea62503782699adf5757cb1d3cd9f880d13c48c (patch) | |
| tree | 558ca2859926b19382a6d9be6c812dc54631fc64 | |
| parent | 3afebf577d4cb21215abb388e80c46c9c387ed0f (diff) | |
| download | olio-linux-3.10-0ea62503782699adf5757cb1d3cd9f880d13c48c.tar.xz olio-linux-3.10-0ea62503782699adf5757cb1d3cd9f880d13c48c.zip  | |
Extcon: renamed files to comply with the standard naming.
Replaced '_' with '-' in the extcon file names, which has been bogging
since new drivers have been using the standard naming.
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/extcon/Makefile | 4 | ||||
| -rw-r--r-- | drivers/extcon/extcon-class.c (renamed from drivers/extcon/extcon_class.c) | 0 | ||||
| -rw-r--r-- | drivers/extcon/extcon-gpio.c (renamed from drivers/extcon/extcon_gpio.c) | 0 | 
3 files changed, 2 insertions, 2 deletions
diff --git a/drivers/extcon/Makefile b/drivers/extcon/Makefile index 88961b33234..9c0682daefb 100644 --- a/drivers/extcon/Makefile +++ b/drivers/extcon/Makefile @@ -2,8 +2,8 @@  # Makefile for external connector class (extcon) devices  # -obj-$(CONFIG_EXTCON)		+= extcon_class.o -obj-$(CONFIG_EXTCON_GPIO)	+= extcon_gpio.o +obj-$(CONFIG_EXTCON)		+= extcon-class.o +obj-$(CONFIG_EXTCON_GPIO)	+= extcon-gpio.o  obj-$(CONFIG_EXTCON_MAX77693)	+= extcon-max77693.o  obj-$(CONFIG_EXTCON_MAX8997)	+= extcon-max8997.o  obj-$(CONFIG_EXTCON_ARIZONA)	+= extcon-arizona.o diff --git a/drivers/extcon/extcon_class.c b/drivers/extcon/extcon-class.c index f6419f9db76..f6419f9db76 100644 --- a/drivers/extcon/extcon_class.c +++ b/drivers/extcon/extcon-class.c diff --git a/drivers/extcon/extcon_gpio.c b/drivers/extcon/extcon-gpio.c index fe3db45fa83..fe3db45fa83 100644 --- a/drivers/extcon/extcon_gpio.c +++ b/drivers/extcon/extcon-gpio.c  |