Commit f02769e7 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Merge tag 'devicetree-fixes-for-6.16-1' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux

Pull devicetree fixes from Rob Herring:

 - Convert altr,uart-1.0 and altr,juart-1.0 to DT schema. These were
   applied for nios2, but never sent upstream.

 - Fix extra '/' in fsl,ls1028a-reset '$id' path

 - Fix warnings in ti,sn65dsi83 schema due to unnecessary $ref.

* tag 'devicetree-fixes-for-6.16-1' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux:
  dt-bindings: serial: Convert altr,uart-1.0 to DT schema
  dt-bindings: serial: Convert altr,juart-1.0 to DT schema
  dt-bindings: soc: fsl,ls1028a-reset: Drop extra "/" in $id
  dt-bindings: drm/bridge: ti-sn65dsi83: drop $ref to fix lvds-vod* warnings
parents e34a79b9 f75794b6
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -118,15 +118,11 @@ $defs:
          ti,lvds-vod-swing-clock-microvolt:
            description: LVDS diferential output voltage <min max> for clock
              lanes in microvolts.
            $ref: /schemas/types.yaml#/definitions/uint32-array
            minItems: 2
            maxItems: 2

          ti,lvds-vod-swing-data-microvolt:
            description: LVDS diferential output voltage <min max> for data
              lanes in microvolts.
            $ref: /schemas/types.yaml#/definitions/uint32-array
            minItems: 2
            maxItems: 2

allOf:
+0 −5
Original line number Diff line number Diff line
Altera JTAG UART

Required properties:
- compatible : should be "ALTR,juart-1.0" <DEPRECATED>
- compatible : should be "altr,juart-1.0"
+0 −8
Original line number Diff line number Diff line
Altera UART

Required properties:
- compatible : should be "ALTR,uart-1.0" <DEPRECATED>
- compatible : should be "altr,uart-1.0"

Optional properties:
- clock-frequency : frequency of the clock input to the UART
+19 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/serial/altr,juart-1.0.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Altera JTAG UART

maintainers:
  - Dinh Nguyen <dinguyen@kernel.org>

properties:
  compatible:
    const: altr,juart-1.0

required:
  - compatible

additionalProperties: false
+25 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/serial/altr,uart-1.0.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Altera UART

maintainers:
  - Dinh Nguyen <dinguyen@kernel.org>

allOf:
  - $ref: /schemas/serial/serial.yaml#

properties:
  compatible:
    const: altr,uart-1.0

  clock-frequency:
    description: Frequency of the clock input to the UART.

required:
  - compatible

unevaluatedProperties: false
Loading