diff options
author | Chanwoo Choi <cw00.choi@samsung.com> | 2015-06-12 05:10:06 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-06-13 03:01:42 +0300 |
commit | 73b6ecdb93e8e77752cae9077c424fcdc6f23c39 (patch) | |
tree | b5835ea1ec76678325e73280209384361f82b695 /drivers/extcon/extcon-max8997.c | |
parent | 03cb0503014f49e41a937d81238ab059fd69ad78 (diff) | |
download | linux-73b6ecdb93e8e77752cae9077c424fcdc6f23c39.tar.xz |
extcon: Redefine the unique id of supported external connectors without 'enum extcon' type
This patch just redefine the unique id of supported external connectors without
'enum extcon' type. Because unique id would be used on devictree file(*.dts) to
indicate the specific external connectors like key number of input framework.
So, I have the plan to move this definitions to following header file which
includes the unique id of supported external connectors.
- include/dt-bindings/extcon/extcon.h
Fixes: 2a9de9c0f08d ("extcon: Use the unique id for external connector instead of string")
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/extcon/extcon-max8997.c')
-rw-r--r-- | drivers/extcon/extcon-max8997.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-max8997.c b/drivers/extcon/extcon-max8997.c index 4d10949c6eb2..7b1ef200b121 100644 --- a/drivers/extcon/extcon-max8997.c +++ b/drivers/extcon/extcon-max8997.c @@ -145,7 +145,7 @@ struct max8997_muic_info { int path_uart; }; -static const enum extcon max8997_extcon_cable[] = { +static const unsigned int max8997_extcon_cable[] = { EXTCON_USB, EXTCON_USB_HOST, EXTCON_TA, |