0001 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/iio/adc/mediatek,mt6360-adc.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Mediatek MT6360 and similar ADCs
0008
0009 maintainers:
0010 - Gene Chen <gene_chen@richtek.com>
0011
0012 properties:
0013 compatible:
0014 const: mediatek,mt6360-adc
0015
0016 "#io-channel-cells":
0017 const: 1
0018
0019 required:
0020 - compatible
0021 - "#io-channel-cells"
0022
0023 additionalProperties: false
0024
0025 examples:
0026 - |
0027 adc {
0028 compatible = "mediatek,mt6360-adc";
0029 #io-channel-cells = <1>;
0030 };
0031 ...