mirror of
https://github.com/torvalds/linux.git
synced 2026-04-19 23:34:00 -04:00
The Devicetree bindings document does not have to say in the title that
it is a "binding", but instead just describe the hardware.
Drop trailing "bindings" in various forms (also with trailing full
stop):
find Documentation/devicetree/bindings/ -type f -name '*.yaml' \
-not -name 'trivial-devices.yaml' \
-exec sed -i -e 's/^title: \(.*\) [bB]indings\?\.\?$/title: \1/' {} \;
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Acked-by: Matti Vaittinen <mazziesaccount@gmail.com> # ROHM
Acked-by: Ulf Hansson <ulf.hansson@linaro.org> # MMC
Acked-by: Stephen Boyd <sboyd@kernel.org> # clk
Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> # input
Acked-by: Mark Brown <broonie@kernel.org>
Acked-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> # media
Acked-by: Sebastian Reichel <sre@kernel.org> # power
Acked-by: Viresh Kumar <viresh.kumar@linaro.org> # cpufreq
Link: https://lore.kernel.org/r/20221216163815.522628-7-krzysztof.kozlowski@linaro.org
Signed-off-by: Rob Herring <robh@kernel.org>
60 lines
1.5 KiB
YAML
60 lines
1.5 KiB
YAML
# SPDX-License-Identifier: GPL-2.0-only
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/leds/backlight/led-backlight.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: led-backlight
|
|
|
|
maintainers:
|
|
- Lee Jones <lee@kernel.org>
|
|
- Daniel Thompson <daniel.thompson@linaro.org>
|
|
- Jingoo Han <jingoohan1@gmail.com>
|
|
|
|
description:
|
|
This binding is used to describe a basic backlight device made of LEDs. It
|
|
can also be used to describe a backlight device controlled by the output of
|
|
a LED driver.
|
|
|
|
properties:
|
|
compatible:
|
|
const: led-backlight
|
|
|
|
leds:
|
|
description: A list of LED nodes
|
|
$ref: /schemas/types.yaml#/definitions/phandle-array
|
|
items:
|
|
maxItems: 1
|
|
|
|
brightness-levels:
|
|
description:
|
|
Array of distinct brightness levels. The levels must be in the range
|
|
accepted by the underlying LED devices. This is used to translate a
|
|
backlight brightness level into a LED brightness level. If it is not
|
|
provided, the identity mapping is used.
|
|
$ref: /schemas/types.yaml#/definitions/uint32-array
|
|
|
|
default-brightness-level:
|
|
description:
|
|
The default brightness level (index into the array defined by the
|
|
"brightness-levels" property).
|
|
$ref: /schemas/types.yaml#/definitions/uint32
|
|
|
|
required:
|
|
- compatible
|
|
- leds
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
backlight {
|
|
compatible = "led-backlight";
|
|
|
|
leds = <&led1>, <&led2>;
|
|
brightness-levels = <0 4 8 16 32 64 128 255>;
|
|
default-brightness-level = <6>;
|
|
};
|
|
|
|
...
|