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

dt-bindings: serial: Convert altr,uart-1.0 to DT schema

Convert the Altera JTAG UART binding to DT schema. The "ALTR,uart-1.0"
compatible has long been deprecated, so drop it.

Signed-off-by: Rob Herring (Arm) <robh@kernel.org>

+25 -8
-8
Documentation/devicetree/bindings/serial/altera_uart.txt
··· 1 - Altera UART 2 - 3 - Required properties: 4 - - compatible : should be "ALTR,uart-1.0" <DEPRECATED> 5 - - compatible : should be "altr,uart-1.0" 6 - 7 - Optional properties: 8 - - clock-frequency : frequency of the clock input to the UART
+25
Documentation/devicetree/bindings/serial/altr,uart-1.0.yaml
··· 1 + # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/serial/altr,uart-1.0.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Altera UART 8 + 9 + maintainers: 10 + - Dinh Nguyen <dinguyen@kernel.org> 11 + 12 + allOf: 13 + - $ref: /schemas/serial/serial.yaml# 14 + 15 + properties: 16 + compatible: 17 + const: altr,uart-1.0 18 + 19 + clock-frequency: 20 + description: Frequency of the clock input to the UART. 21 + 22 + required: 23 + - compatible 24 + 25 + unevaluatedProperties: false