Commit 4fda8a2d authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Dmitry Torokhov

dt-bindings: input: use generic node names

Devicetree specification expects nodes to have generic names, if
possible, so replace custom ones with something generic.  For gpio-keys,
the more popular format is "key-xxx" instead of "xxx-key", so choose the
first one.
Signed-off-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Acked-by: default avatarJeff LaBundy <jeff@labundy.com>
Reviewed-by: default avatarRob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20220524093136.7980-1-krzysztof.kozlowski@linaro.orgSigned-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 433302dd
...@@ -57,7 +57,7 @@ examples: ...@@ -57,7 +57,7 @@ examples:
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
mpr121@5a { touchkey@5a {
compatible = "fsl,mpr121-touchkey"; compatible = "fsl,mpr121-touchkey";
reg = <0x5a>; reg = <0x5a>;
interrupt-parent = <&gpio1>; interrupt-parent = <&gpio1>;
...@@ -77,7 +77,7 @@ examples: ...@@ -77,7 +77,7 @@ examples:
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
mpr121@5a { touchkey@5a {
compatible = "fsl,mpr121-touchkey"; compatible = "fsl,mpr121-touchkey";
reg = <0x5a>; reg = <0x5a>;
poll-interval = <20>; poll-interval = <20>;
......
...@@ -127,13 +127,13 @@ examples: ...@@ -127,13 +127,13 @@ examples:
compatible = "gpio-keys"; compatible = "gpio-keys";
autorepeat; autorepeat;
up { key-up {
label = "GPIO Key UP"; label = "GPIO Key UP";
linux,code = <103>; linux,code = <103>;
gpios = <&gpio1 0 1>; gpios = <&gpio1 0 1>;
}; };
down { key-down {
label = "GPIO Key DOWN"; label = "GPIO Key DOWN";
linux,code = <108>; linux,code = <108>;
interrupts = <1 IRQ_TYPE_EDGE_FALLING>; interrupts = <1 IRQ_TYPE_EDGE_FALLING>;
......
...@@ -475,7 +475,7 @@ examples: ...@@ -475,7 +475,7 @@ examples:
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
iqs269a@44 { touch@44 {
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
......
...@@ -751,7 +751,7 @@ examples: ...@@ -751,7 +751,7 @@ examples:
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
iqs626a@44 { touch@44 {
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
......
...@@ -112,7 +112,7 @@ examples: ...@@ -112,7 +112,7 @@ examples:
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
cap1188@28 { touch@28 {
compatible = "microchip,cap1188"; compatible = "microchip,cap1188";
interrupt-parent = <&gpio1>; interrupt-parent = <&gpio1>;
interrupts = <0 0>; interrupts = <0 0>;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment