Message ID | 20200201180024.328700-3-david@ixit.cz (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [v3,1/7] dt-bindings: iio: light: add support for Dyna-Image AL3320A | expand |
01.02.2020 21:00, David Heidelberg пишет: > Subject: [PATCH v3 2/7] dt-bindings: iio: light: add support for Dyna-Image > AL3010 > MIME-Version: 1.0 > Content-Type: text/plain; charset=UTF-8 > Content-Transfer-Encoding: 8bit Looks like something went wrong, ^ this shouldn't be in the patch's body. > The Dyna-Image AL3010 is a 16-bit digital ambient light sensor which > provides a multiple gain function with linear response over a dynamic > range 1216/4863/19452/77806. > > Signed-off-by: David Heidelberg <david@ixit.cz> > --- You should put individual changelog for each patch under the ---, or just add a cover-letter with global changelog. > .../devicetree/bindings/iio/light/al3010.yaml | 45 +++++++++++++++++++ > 1 file changed, 45 insertions(+) > create mode 100644 Documentation/devicetree/bindings/iio/light/al3010.yaml ...
diff --git a/Documentation/devicetree/bindings/iio/light/al3010.yaml b/Documentation/devicetree/bindings/iio/light/al3010.yaml new file mode 100644 index 000000000000..e7e0281476bd --- /dev/null +++ b/Documentation/devicetree/bindings/iio/light/al3010.yaml @@ -0,0 +1,45 @@ +# SPDX-License-Identifier: (GPL-2.0-only) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/iio/light/al3010.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Dyna-Image AL3010 sensor + +maintainers: + - David Heidelberg <david@ixit.cz> + +properties: + compatible: + const: dynaimage,al3010 + + reg: + maxItems: 1 + + interrupts: + maxItems: 1 + + vdd-supply: + description: Regulator that provides power to the sensor + +required: + - compatible + - reg + - interrupts + - vdd-supply + +examples: + - | + #include <dt-bindings/interrupt-controller/irq.h> + + i2c { + #address-cells = <1>; + #size-cells = <0>; + + al3010@1c { + compatible = "dynaimage,al3010"; + reg = <0x1c>; + vdd-supply = <&vdd_reg>; + interrupts = <0 99 4>; + }; + };
Subject: [PATCH v3 2/7] dt-bindings: iio: light: add support for Dyna-Image AL3010 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Dyna-Image AL3010 is a 16-bit digital ambient light sensor which provides a multiple gain function with linear response over a dynamic range 1216/4863/19452/77806. Signed-off-by: David Heidelberg <david@ixit.cz> --- .../devicetree/bindings/iio/light/al3010.yaml | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 Documentation/devicetree/bindings/iio/light/al3010.yaml