mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-19 12:03:56 -04:00
Another round of 'allOf' removals that came in this cycle. 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. Signed-off-by: Rob Herring <robh@kernel.org>
49 lines
915 B
YAML
49 lines
915 B
YAML
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/iio/light/amstaos,tsl2563.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: AMS TAOS TSL2563 ambient light sensor
|
|
|
|
maintainers:
|
|
- Sebastian Reichel <sre@kernel.org>
|
|
|
|
description: |
|
|
Ambient light sensor with an i2c interface.
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- amstaos,tsl2560
|
|
- amstaos,tsl2561
|
|
- amstaos,tsl2562
|
|
- amstaos,tsl2563
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
amstaos,cover-comp-gain:
|
|
description: Multiplier for gain compensation
|
|
$ref: /schemas/types.yaml#/definitions/uint32
|
|
enum: [1, 16]
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
|
|
examples:
|
|
- |
|
|
i2c {
|
|
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
light-sensor@29 {
|
|
compatible = "amstaos,tsl2563";
|
|
reg = <0x29>;
|
|
amstaos,cover-comp-gain = <16>;
|
|
};
|
|
};
|
|
...
|