mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-22 10:34:55 +08:00
3d21a46093
json-schema versions draft7 and earlier have a weird behavior in that any keywords combined with a '$ref' are ignored (silently). The correct form was to put a '$ref' under an 'allOf'. This behavior is now changed in the 2019-09 json-schema spec and '$ref' can be mixed with other keywords. The json-schema library doesn't yet support this, but the tooling now does a fixup for this and either way works. This has been a constant source of review comments, so let's change this treewide so everyone copies the simpler syntax. Scripted with ruamel.yaml with some manual fixups. Some minor whitespace changes from the script. Signed-off-by: Rob Herring <robh@kernel.org> Acked-by: Maxime Ripard <mripard@kernel.org> Acked-by: Lee Jones <lee.jones@linaro.org> Acked-By: Vinod Koul <vkoul@kernel.org> Acked-by: Mark Brown <broonie@kernel.org> Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Acked-by: Wolfram Sang <wsa@the-dreams.de> # for I2C Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> #for-iio Reviewed-by: Stephen Boyd <sboyd@kernel.org> # clock Signed-off-by: Rob Herring <robh@kernel.org>
55 lines
1.4 KiB
YAML
55 lines
1.4 KiB
YAML
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/leds/rohm,bd71828-leds.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: ROHM BD71828 Power Management Integrated Circuit LED driver
|
|
|
|
maintainers:
|
|
- Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
|
|
|
|
description: |
|
|
This module is part of the ROHM BD71828 MFD device. For more details
|
|
see Documentation/devicetree/bindings/mfd/rohm,bd71828-pmic.yaml.
|
|
|
|
The LED controller is represented as a sub-node of the PMIC node on the device
|
|
tree.
|
|
|
|
The device has two LED outputs referred as GRNLED and AMBLED in data-sheet.
|
|
|
|
select: false
|
|
|
|
properties:
|
|
compatible:
|
|
const: rohm,bd71828-leds
|
|
|
|
patternProperties:
|
|
"^led-[1-2]$":
|
|
type: object
|
|
description:
|
|
Properties for a single LED.
|
|
properties:
|
|
#allOf:
|
|
#- $ref: "common.yaml#"
|
|
rohm,led-compatible:
|
|
description: LED identification string
|
|
$ref: "/schemas/types.yaml#/definitions/string"
|
|
enum:
|
|
- bd71828-ambled
|
|
- bd71828-grnled
|
|
function:
|
|
description:
|
|
Purpose of LED as defined in dt-bindings/leds/common.h
|
|
$ref: "/schemas/types.yaml#/definitions/string"
|
|
color:
|
|
description:
|
|
LED colour as defined in dt-bindings/leds/common.h
|
|
$ref: "/schemas/types.yaml#/definitions/uint32"
|
|
|
|
required:
|
|
- compatible
|
|
additionalProperties: false
|
|
|
|
...
|