diff options
author | Chanwoo Choi <cw00.choi@samsung.com> | 2016-08-05 18:15:46 +0900 |
---|---|---|
committer | Chanwoo Choi <cw00.choi@samsung.com> | 2016-08-08 11:17:23 +0900 |
commit | 7fe95fb889faf07ee438384858d38b820973397e (patch) | |
tree | a73d18f097b0ba5a2d82fc6483ad7d4aac4e4ad9 /drivers/extcon/extcon.c | |
parent | 9c0595d688e9deb337ff8901bb25281cdb19050b (diff) | |
download | talos-obmc-linux-7fe95fb889faf07ee438384858d38b820973397e.tar.gz talos-obmc-linux-7fe95fb889faf07ee438384858d38b820973397e.zip |
extcon: Add new EXTCON_CHG_WPT for Wireless Power Transfer device
This patchs add the new EXTCON_CHG_WPT for Wireless Power Transfer[1].
The Wireless Power Transfer is the transmission of electronical energy
from a power source. The EXTCON_CHG_WPT has the EXTCON_TYPE_CHG.
[1] https://en.wikipedia.org/wiki/Wireless_power_transfer
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'drivers/extcon/extcon.c')
-rw-r--r-- | drivers/extcon/extcon.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/extcon/extcon.c b/drivers/extcon/extcon.c index 10ba876ea77a..78298460d168 100644 --- a/drivers/extcon/extcon.c +++ b/drivers/extcon/extcon.c @@ -93,6 +93,11 @@ struct __extcon_info { .id = EXTCON_CHG_USB_SLOW, .name = "SLOW-CHARGER", }, + [EXTCON_CHG_WPT] = { + .type = EXTCON_TYPE_CHG, + .id = EXTCON_CHG_WPT, + .name = "WPT", + }, /* Jack external connector */ [EXTCON_JACK_MICROPHONE] = { |