Skip to content

Commit

Permalink
extcon: palmas: Added a new compatible type *ti,palmas-usb-vid*
Browse files Browse the repository at this point in the history
The Palmas device contains only a USB VBUS-ID detector, so added a
compatible type *ti,palmas-usb-vid*. Didn't remove the existing compatible
types for backward compatibility.

Signed-off-by: Kishon Vijay Abraham I <[email protected]>
Signed-off-by: Chanwoo Choi <[email protected]>
  • Loading branch information
kishon authored and chanwoochoi committed Jan 7, 2014
1 parent 81df63a commit 5fbc77d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Documentation/devicetree/bindings/extcon/extcon-palmas.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ EXTCON FOR PALMAS/TWL CHIPS

PALMAS USB COMPARATOR
Required Properties:
- compatible : Should be "ti,palmas-usb" or "ti,twl6035-usb"
- compatible: should contain one of:
* "ti,palmas-usb-vid".
* "ti,twl6035-usb-vid".
* "ti,palmas-usb" (DEPRECATED - use "ti,palmas-usb-vid").
* "ti,twl6035-usb" (DEPRECATED - use "ti,twl6035-usb-vid").

Optional Properties:
- ti,wakeup : To enable the wakeup comparator in probe
Expand Down
2 changes: 2 additions & 0 deletions drivers/extcon/extcon-palmas.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,9 @@ static const struct dev_pm_ops palmas_pm_ops = {

static struct of_device_id of_palmas_match_tbl[] = {
{ .compatible = "ti,palmas-usb", },
{ .compatible = "ti,palmas-usb-vid", },
{ .compatible = "ti,twl6035-usb", },
{ .compatible = "ti,twl6035-usb-vid", },
{ /* end */ }
};

Expand Down

0 comments on commit 5fbc77d

Please sign in to comment.