mirror of
https://github.com/torvalds/linux.git
synced 2026-04-25 10:02:31 -04:00
Clean-up incorrect indentation, extra spaces, and missing EOF newline in schema files. Most of the clean-ups are for list indentation which should always be 2 spaces more than the preceding keyword. Found with yamllint (now integrated into the checks). Cc: linux-arm-kernel@lists.infradead.org Cc: dri-devel@lists.freedesktop.org Cc: linux-gpio@vger.kernel.org Cc: linux-i2c@vger.kernel.org Cc: linux-iio@vger.kernel.org Cc: linux-pm@vger.kernel.org Cc: alsa-devel@alsa-project.org Cc: linux-mmc@vger.kernel.org Cc: linux-mtd@lists.infradead.org Cc: linux-serial@vger.kernel.org Cc: linux-usb@vger.kernel.org Acked-by: Wolfram Sang <wsa@kernel.org> # for I2C Acked-by: Sam Ravnborg <sam@ravnborg.org> # for display Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> #for-iio Signed-off-by: Rob Herring <robh@kernel.org>
48 lines
935 B
YAML
48 lines
935 B
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/iio/adc/adi,ad7291.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: AD7291 8-Channel, I2C, 12-Bit SAR ADC with Temperature Sensor
|
|
|
|
maintainers:
|
|
- Michael Auchter <michael.auchter@ni.com>
|
|
|
|
description: |
|
|
Analog Devices AD7291 8-Channel I2C 12-Bit SAR ADC with Temperature Sensor
|
|
https://www.analog.com/media/en/technical-documentation/data-sheets/ad7291.pdf
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- adi,ad7291
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
vref-supply:
|
|
description: |
|
|
The regulator supply for ADC reference voltage.
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
i2c {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
ad7291: adc@0 {
|
|
compatible = "adi,ad7291";
|
|
reg = <0>;
|
|
vref-supply = <&adc_vref>;
|
|
};
|
|
};
|
|
...
|
|
|