brintos

brintos / linux-shallow public Read only

0
0
Text · 615 B · 4c1f22e Raw
36 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/rtc/mstar,ssd202d-rtc.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Mstar SSD202D Real Time Clock8 9maintainers:10  - Daniel Palmer <daniel@0x0f.com>11  - Romain Perier <romain.perier@gmail.com>12 13allOf:14  - $ref: rtc.yaml#15 16properties:17  compatible:18    enum:19      - mstar,ssd202d-rtc20  reg:21    maxItems: 122 23required:24  - compatible25  - reg26 27unevaluatedProperties: false28 29examples:30  - |31    rtc@6800 {32        compatible = "mstar,ssd202d-rtc";33        reg = <0x6800 0x200>;34    };35...36