On Sat, 31 Oct 2020 18:48:24 +0000 Jonathan Cameron <jic23@xxxxxxxxxx> wrote: > From: Jonathan Cameron <Jonathan.Cameron@xxxxxxxxxx> > > Simple conversion. Maintainers as per original binding file authors, > but that was a long time back so as with others, if email addresses bounce > I'll switch this to me. > > Signed-off-by: Jonathan Cameron <Jonathan.Cameron@xxxxxxxxxx> > Cc: Jacek Anaszewski <j.anaszewski@xxxxxxxxxxx> Jacek's emails bouncing so dropped from maintainers. Applied to the togreg branch of iio.git and pushed out as testing for the autobuilders to poke at it. Thanks, Jonathan > Cc: Kyungmin Park <kyungmin.park@xxxxxxxxxxx> > --- > .../bindings/iio/light/gp2ap020a00f.txt | 21 -------- > .../iio/light/sharp,gp2ap020a00f.yaml | 49 +++++++++++++++++++ > 2 files changed, 49 insertions(+), 21 deletions(-) > > diff --git a/Documentation/devicetree/bindings/iio/light/gp2ap020a00f.txt b/Documentation/devicetree/bindings/iio/light/gp2ap020a00f.txt > deleted file mode 100644 > index 9231c82317ad..000000000000 > --- a/Documentation/devicetree/bindings/iio/light/gp2ap020a00f.txt > +++ /dev/null > @@ -1,21 +0,0 @@ > -* Sharp GP2AP020A00F I2C Proximity/ALS sensor > - > -The proximity detector sensor requires power supply > -for its built-in led. It is also defined by this binding. > - > -Required properties: > - > - - compatible : should be "sharp,gp2ap020a00f" > - - reg : the I2C slave address of the light sensor > - - interrupts : interrupt specifier for the sole interrupt generated > - by the device > - - vled-supply : VLED power supply, as covered in ../regulator/regulator.txt > - > -Example: > - > -gp2ap020a00f@39 { > - compatible = "sharp,gp2ap020a00f"; > - reg = <0x39>; > - interrupts = <2 0>; > - vled-supply = <...>; > -}; > diff --git a/Documentation/devicetree/bindings/iio/light/sharp,gp2ap020a00f.yaml b/Documentation/devicetree/bindings/iio/light/sharp,gp2ap020a00f.yaml > new file mode 100644 > index 000000000000..d6a4b47467f2 > --- /dev/null > +++ b/Documentation/devicetree/bindings/iio/light/sharp,gp2ap020a00f.yaml > @@ -0,0 +1,49 @@ > +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) > +%YAML 1.2 > +--- > +$id: http://devicetree.org/schemas/iio/light/sharp,gp2ap020a00f.yaml# > +$schema: http://devicetree.org/meta-schemas/core.yaml# > + > +title: Sharp GP2AP020A00F I2C Proximity/ALS sensor > + > +maintainers: > + - Jacek Anaszewski <j.anaszewski@xxxxxxxxxxx> > + - Kyungmin Park <kyungmin.park@xxxxxxxxxxx> > + > +description: | > + The proximity detector sensor requires power supply for its built-in led. > + > +properties: > + compatible: > + const: sharp,gp2ap020a00f > + > + reg: > + maxItems: 1 > + > + interrupts: > + maxItems: 1 > + > + vled-supply: true > + > +additionalProperties: false > + > +required: > + - compatible > + - reg > + - interrupts > + - vled-supply > + > +examples: > + - | > + i2c { > + #address-cells = <1>; > + #size-cells = <0>; > + > + light-sensor@39 { > + compatible = "sharp,gp2ap020a00f"; > + reg = <0x39>; > + interrupts = <2 0>; > + vled-supply = <&als_reg>; > + }; > + }; > +...