]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
extcon: palmas: Added a new compatible type *ti,palmas-usb-vid*
authorKishon Vijay Abraham I <kishon@ti.com>
Thu, 10 Oct 2013 12:37:27 +0000 (18:07 +0530)
committerChanwoo Choi <cw00.choi@samsung.com>
Tue, 7 Jan 2014 02:54:27 +0000 (11:54 +0900)
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 <kishon@ti.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Documentation/devicetree/bindings/extcon/extcon-palmas.txt
drivers/extcon/extcon-palmas.c

index 7dab6a8f4a0e46cf0590d50227ceeb99a0c40a5e..45414bbcd9455b13620e9923f0dec048995c82cb 100644 (file)
@@ -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
index 6c91976dd82371d63008474cb030aa7e4cfeb507..6e83e9a43d12ef491e0b855fa3f5c1be8c9677f6 100644 (file)
@@ -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 */ }
 };