On Sun, Oct 20, 2019 at 06:08:11AM +0200, Andreas Färber wrote: > Convert the RTD119x binding to a YAML schema. > > Signed-off-by: Andreas Färber <afaerber@xxxxxxx> > --- > v2: New > > .../devicetree/bindings/rtc/realtek,rtd119x.txt | 16 --------- > .../devicetree/bindings/rtc/realtek,rtd119x.yaml | 38 ++++++++++++++++++++++ > 2 files changed, 38 insertions(+), 16 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/rtc/realtek,rtd119x.txt > create mode 100644 Documentation/devicetree/bindings/rtc/realtek,rtd119x.yaml > diff --git a/Documentation/devicetree/bindings/rtc/realtek,rtd119x.yaml b/Documentation/devicetree/bindings/rtc/realtek,rtd119x.yaml > new file mode 100644 > index 000000000000..71b7396bd469 > --- /dev/null > +++ b/Documentation/devicetree/bindings/rtc/realtek,rtd119x.yaml > @@ -0,0 +1,38 @@ > +# SPDX-License-Identifier: GPL-2.0-or-later OR BSD-2-Clause Missing () Though I'm not sure it matters other than consistency. > +%YAML 1.2 > +--- > +$id: http://devicetree.org/schemas/rtc/realtek,rtd119x.yaml# > +$schema: http://devicetree.org/meta-schemas/core.yaml# > + > +title: Realtek RTD129x Real-Time Clock > + > +allOf: > + - $ref: "rtc.yaml#" > + > +maintainers: > + - Andreas Färber <afaerber@xxxxxxx> > + > +properties: > + compatible: > + const: realtek,rtd1295-rtc > + > + reg: > + maxItems: 1 > + > + clocks: > + maxItems: 1 > + description: Specifies the clock gate > + > +required: > + - compatible > + - reg > + - clocks > + > +examples: > + - | > + rtc@9801b600 { > + compatible = "realtek,rtd1295-clk"; > + reg = <0x9801b600 0x100>; > + clocks = <&clkc RTD1295_CLK_EN_MISC_RTC>; You need the include file here or the example won't build (run 'make dt_binding_check'). > + }; > +... > -- > 2.16.4 >