Commit 0cd1b0c3 authored by Olliver Schinagl's avatar Olliver Schinagl Committed by Bryan Wu

leds: Let the binding document example for leds-gpio follow the gpio bindings

In the gpio bindings documents it is requested to use the marco's in
include/dt-bindings/gpio/gpio.h whenever possible. The gpios in the led
drivers don't seem to form an exception, so update the example in the
document bindings.
Signed-off-by: default avatarOlliver Schinagl <oliver@schinagl.nl>
Acked-by: default avatarRob Herring <robh@kernel.org>
Acked-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarBryan Wu <cooloney@gmail.com>
parent 0c571785
...@@ -26,16 +26,18 @@ LED sub-node properties: ...@@ -26,16 +26,18 @@ LED sub-node properties:
Examples: Examples:
#include <dt-bindings/gpio/gpio.h>
leds { leds {
compatible = "gpio-leds"; compatible = "gpio-leds";
hdd { hdd {
label = "IDE Activity"; label = "IDE Activity";
gpios = <&mcu_pio 0 1>; /* Active low */ gpios = <&mcu_pio 0 GPIO_ACTIVE_LOW>;
linux,default-trigger = "ide-disk"; linux,default-trigger = "ide-disk";
}; };
fault { fault {
gpios = <&mcu_pio 1 0>; gpios = <&mcu_pio 1 GPIO_ACTIVE_HIGH>;
/* Keep LED on if BIOS detected hardware fault */ /* Keep LED on if BIOS detected hardware fault */
default-state = "keep"; default-state = "keep";
}; };
...@@ -44,11 +46,11 @@ leds { ...@@ -44,11 +46,11 @@ leds {
run-control { run-control {
compatible = "gpio-leds"; compatible = "gpio-leds";
red { red {
gpios = <&mpc8572 6 0>; gpios = <&mpc8572 6 GPIO_ACTIVE_HIGH>;
default-state = "off"; default-state = "off";
}; };
green { green {
gpios = <&mpc8572 7 0>; gpios = <&mpc8572 7 GPIO_ACTIVE_HIGH>;
default-state = "on"; default-state = "on";
}; };
}; };
...@@ -57,7 +59,7 @@ leds { ...@@ -57,7 +59,7 @@ leds {
compatible = "gpio-leds"; compatible = "gpio-leds";
charger-led { charger-led {
gpios = <&gpio1 2 0>; gpios = <&gpio1 2 GPIO_ACTIVE_HIGH>;
linux,default-trigger = "max8903-charger-charging"; linux,default-trigger = "max8903-charger-charging";
retain-state-suspended; retain-state-suspended;
}; };
......
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