You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
395 B
16 lines
395 B
gpio-backlight bindings
|
|
|
|
Required properties:
|
|
- compatible: "gpio-backlight"
|
|
- gpios: describes the gpio that is used for enabling/disabling the backlight.
|
|
refer to bindings/gpio/gpio.txt for more details.
|
|
|
|
Optional properties:
|
|
- default-on: enable the backlight at boot.
|
|
|
|
Example:
|
|
backlight {
|
|
compatible = "gpio-backlight";
|
|
gpios = <&gpio3 4 GPIO_ACTIVE_HIGH>;
|
|
default-on;
|
|
};
|
|
|