From: Nikita Shubin Date: Fri, 28 Apr 2023 14:23:54 +0000 (+0300) Subject: fixup! dt-bindings: watchdog: add DT bindings for Cirrus EP93x X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=38a5688fb5004830633f86989def35676ec04c27;p=linux.git fixup! dt-bindings: watchdog: add DT bindings for Cirrus EP93x --- diff --git a/Documentation/devicetree/bindings/watchdog/cirrus,ep9301-wdt.yaml b/Documentation/devicetree/bindings/watchdog/cirrus,ep9301-wdt.yaml new file mode 100644 index 0000000000000..86f6fce7bbbe3 --- /dev/null +++ b/Documentation/devicetree/bindings/watchdog/cirrus,ep9301-wdt.yaml @@ -0,0 +1,39 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/watchdog/cirrus,ep9301-wdt.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Cirrus Logic EP93xx Watchdog Timer + +maintainers: + - Nikita Shubin + - Alexander Sverdlin + +description: + Cirrus Logic EP93xx SoC family has it's own watchdog implementation + +allOf: + - $ref: watchdog.yaml# + +properties: + compatible: + enum: + - cirrus,ep9301-wdt + + reg: + maxItems: 1 + +required: + - compatible + - reg + +additionalProperties: false + +examples: + - | + watchdog@80940000 { + compatible = "cirrus,ep9301-wdt"; + reg = <0x80940000 0x08>; + }; + diff --git a/Documentation/devicetree/bindings/watchdog/cirrus,ep93xx-wdt.yaml b/Documentation/devicetree/bindings/watchdog/cirrus,ep93xx-wdt.yaml deleted file mode 100644 index f39d6b14062da..0000000000000 --- a/Documentation/devicetree/bindings/watchdog/cirrus,ep93xx-wdt.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) -%YAML 1.2 ---- -$id: http://devicetree.org/schemas/watchdog/cirrus,ep93xx-wdt.yaml# -$schema: http://devicetree.org/meta-schemas/core.yaml# - -title: Cirrus Logic EP93xx Watchdog Timer - -maintainers: - - Wim Van Sebroeck - -description: - Watchdog driver for Cirrus Logic EP93xx family of devices. - -allOf: - - $ref: "watchdog.yaml#" - -properties: - compatible: - enum: - - cirrus,ep9301-wdt - - reg: - maxItems: 1 - -required: - - compatible - - reg - -additionalProperties: false - -examples: - - | - wdt0: watchdog@80940000 { - compatible = "cirrus,ep9301-wdt"; - reg = <0x80940000 0x08>; - }; -