Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / Documentation / devicetree / bindings / leds / backlight / gpio-backlight.txt
blob321be6640533e9ee2d0ff024788f2800343f50d1
1 gpio-backlight bindings
3 Required properties:
4   - compatible: "gpio-backlight"
5   - gpios: describes the gpio that is used for enabling/disabling the backlight.
6     refer to bindings/gpio/gpio.txt for more details.
8 Optional properties:
9   - default-on: enable the backlight at boot.
11 Example:
12         backlight {
13                 compatible = "gpio-backlight";
14                 gpios = <&gpio3 4 GPIO_ACTIVE_HIGH>;
15                 default-on;
16         };