Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: watchdog: realtek,rtd1295-watchdog: convert txt to yaml

Convert txt file to yaml. Add maintainers from git blame.

Signed-off-by: Nik Bune <n2h9z4@gmail.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/20231112162049.12633-1-n2h9z4@gmail.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>

authored by

Nik Bune and committed by
Wim Van Sebroeck
c622a953 f33f5b1f

+38 -17
-17
Documentation/devicetree/bindings/watchdog/realtek,rtd119x.txt
··· 1 - Realtek RTD1295 Watchdog 2 - ======================== 3 - 4 - Required properties: 5 - 6 - - compatible : Should be "realtek,rtd1295-watchdog" 7 - - reg : Specifies the physical base address and size of registers 8 - - clocks : Specifies one clock input 9 - 10 - 11 - Example: 12 - 13 - watchdog@98007680 { 14 - compatible = "realtek,rtd1295-watchdog"; 15 - reg = <0x98007680 0x100>; 16 - clocks = <&osc27M>; 17 - };
+38
Documentation/devicetree/bindings/watchdog/realtek,rtd1295-watchdog.yaml
··· 1 + # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/watchdog/realtek,rtd1295-watchdog.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Realtek RTD1295 Watchdog 8 + 9 + maintainers: 10 + - Andreas Färber <afaerber@suse.de> 11 + 12 + allOf: 13 + - $ref: watchdog.yaml# 14 + 15 + properties: 16 + compatible: 17 + const: realtek,rtd1295-watchdog 18 + 19 + reg: 20 + maxItems: 1 21 + 22 + clocks: 23 + maxItems: 1 24 + 25 + required: 26 + - compatible 27 + - reg 28 + - clocks 29 + 30 + unevaluatedProperties: false 31 + 32 + examples: 33 + - | 34 + watchdog@98007680 { 35 + compatible = "realtek,rtd1295-watchdog"; 36 + reg = <0x98007680 0x100>; 37 + clocks = <&osc27M>; 38 + };