Commit 7a3a2a64 authored by Johan Jonker's avatar Johan Jonker Committed by Rob Herring

dt-bindings: leds: common: fix example for gpio-leds

The preferred form for gpio-leds compatible subnodes is:
^led-[0-9a-f]$
Fix example by changing led0 and led1 to led-0 and led-1.
Signed-off-by: default avatarJohan Jonker <jbx6244@gmail.com>
Acked-by: default avatarPavel Machek <pavel@ucw.cz>
Signed-off-by: default avatarRob Herring <robh@kernel.org>
parent c80f0104
...@@ -167,13 +167,13 @@ examples: ...@@ -167,13 +167,13 @@ examples:
led-controller { led-controller {
compatible = "gpio-leds"; compatible = "gpio-leds";
led0 { led-0 {
function = LED_FUNCTION_STATUS; function = LED_FUNCTION_STATUS;
linux,default-trigger = "heartbeat"; linux,default-trigger = "heartbeat";
gpios = <&gpio0 0 GPIO_ACTIVE_HIGH>; gpios = <&gpio0 0 GPIO_ACTIVE_HIGH>;
}; };
led1 { led-1 {
function = LED_FUNCTION_USB; function = LED_FUNCTION_USB;
gpios = <&gpio0 1 GPIO_ACTIVE_HIGH>; gpios = <&gpio0 1 GPIO_ACTIVE_HIGH>;
trigger-sources = <&ohci_port1>, <&ehci_port1>; trigger-sources = <&ohci_port1>, <&ehci_port1>;
......
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