mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-12 13:34:10 +08:00
dt-bindings: as3645a: Add function and color properties
Refer to new "function" and "color" properties and mark "label" as deprecated. Also, fix malformed syntax of address-cells and size-cells in the example. Signed-off-by: Jacek Anaszewski <jacek.anaszewski@gmail.com> Cc: Sakari Ailus <sakari.ailus@linux.intel.com> Reviewed-by: Rob Herring <robh@kernel.org>
This commit is contained in:
parent
8103f55852
commit
5b95cb0cbf
@ -39,7 +39,9 @@ ams,input-max-microamp: Maximum flash controller input current. The
|
|||||||
Optional properties of the flash child node
|
Optional properties of the flash child node
|
||||||
===========================================
|
===========================================
|
||||||
|
|
||||||
label : The label of the flash LED.
|
function : See Documentation/devicetree/bindings/leds/common.txt.
|
||||||
|
color : See Documentation/devicetree/bindings/leds/common.txt.
|
||||||
|
label : See Documentation/devicetree/bindings/leds/common.txt (deprecated).
|
||||||
|
|
||||||
|
|
||||||
Required properties of the indicator child node (1)
|
Required properties of the indicator child node (1)
|
||||||
@ -52,28 +54,32 @@ led-max-microamp: Maximum indicator current. The allowed values are
|
|||||||
Optional properties of the indicator child node
|
Optional properties of the indicator child node
|
||||||
===============================================
|
===============================================
|
||||||
|
|
||||||
label : The label of the indicator LED.
|
function : See Documentation/devicetree/bindings/leds/common.txt.
|
||||||
|
color : See Documentation/devicetree/bindings/leds/common.txt.
|
||||||
|
label : See Documentation/devicetree/bindings/leds/common.txt (deprecated).
|
||||||
|
|
||||||
|
|
||||||
Example
|
Example
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
#include <dt-bindings/leds/common.h>
|
||||||
|
|
||||||
as3645a@30 {
|
as3645a@30 {
|
||||||
#address-cells: 1
|
#address-cells = <1>;
|
||||||
#size-cells: 0
|
#size-cells = <0>;
|
||||||
reg = <0x30>;
|
reg = <0x30>;
|
||||||
compatible = "ams,as3645a";
|
compatible = "ams,as3645a";
|
||||||
flash@0 {
|
led@0 {
|
||||||
reg = <0x0>;
|
reg = <0x0>;
|
||||||
flash-timeout-us = <150000>;
|
flash-timeout-us = <150000>;
|
||||||
flash-max-microamp = <320000>;
|
flash-max-microamp = <320000>;
|
||||||
led-max-microamp = <60000>;
|
led-max-microamp = <60000>;
|
||||||
ams,input-max-microamp = <1750000>;
|
ams,input-max-microamp = <1750000>;
|
||||||
label = "as3645a:flash";
|
function = LED_FUNCTION_FLASH;
|
||||||
};
|
};
|
||||||
indicator@1 {
|
led@1 {
|
||||||
reg = <0x1>;
|
reg = <0x1>;
|
||||||
led-max-microamp = <10000>;
|
led-max-microamp = <10000>;
|
||||||
label = "as3645a:indicator";
|
function = LED_FUNCTION_INDICATOR;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user