Commit 14571d5f authored by Linus Torvalds's avatar Linus Torvalds
Browse files

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

Pull devicetree fixes from Rob Herring:

 - Correct the JSON pointer syntax in binding schemas

 - Drop unnecessary *-supply schema constraints

 - Drop redundant maxItems/items on array schemas

 - Fix various yamllint warnings

 - Fix various missing 'additionalProperties' properties

* tag 'devicetree-fixes-for-5.11-1' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux:
  dt-bindings: Drop redundant maxItems/items
  dt-bindings: net: qcom,ipa: Drop unnecessary type ref on 'memory-region'
  dt-bindings: Drop unnecessary *-supply schemas properties
  dt-bindings/display: abt,y030xx067a: Fix binding
  dt-bindings: clock: imx8qxp-lpcg: eliminate yamllint warnings
  dt-bindings: display: eliminate yamllint warnings
  dt-bindings: media: nokia,smia: eliminate yamllint warnings
  dt-bindings: devapc: add the required property 'additionalProperties'
  dt-bindings: soc: add the required property 'additionalProperties'
  dt-bindings: serial: add the required property 'additionalProperties'
  dt-bindings: xlnx,vcu-settings: fix dt_binding_check warnings
  media: dt-bindings: coda: Add missing 'additionalProperties'
  dt-bindings: Fix JSON pointers
parents 64145482 2b8f061a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -313,7 +313,7 @@ patternProperties:
          wakeup-latency-us by this duration.

      idle-state-name:
        $ref: /schemas/types.yaml#definitions/string
        $ref: /schemas/types.yaml#/definitions/string
        description:
          A string used as a descriptive name for the idle state.

+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ properties:
    description:
      The SRAM that needs to be claimed to access the display engine
      bus.
    $ref: /schemas/types.yaml#definitions/phandle-array
    $ref: /schemas/types.yaml#/definitions/phandle-array
    maxItems: 1

  ranges: true
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ properties:
    const: 1

  syscon:
    $ref: /schemas/types.yaml#definitions/phandle
    $ref: /schemas/types.yaml#/definitions/phandle
    description: Phandle to the Baikal-T1 System Controller DT node

  interrupts:
+5 −5
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ properties:
    description: Size of the connector, should be specified in case of
      non-fullsize 'usb-a-connector' or 'usb-b-connector' compatible
      connectors.
    $ref: /schemas/types.yaml#definitions/string
    $ref: /schemas/types.yaml#/definitions/string

    enum:
      - mini
@@ -67,7 +67,7 @@ properties:
  power-role:
    description: Determines the power role that the Type C connector will
      support. "dual" refers to Dual Role Port (DRP).
    $ref: /schemas/types.yaml#definitions/string
    $ref: /schemas/types.yaml#/definitions/string

    enum:
      - source
@@ -76,7 +76,7 @@ properties:

  try-power-role:
    description: Preferred power role.
    $ref: /schemas/types.yaml#definitions/string
    $ref: /schemas/types.yaml#/definitions/string

    enum:
      - source
@@ -86,7 +86,7 @@ properties:
  data-role:
    description: Data role if Type C connector supports USB data. "dual" refers
      Dual Role Device (DRD).
    $ref: /schemas/types.yaml#definitions/string
    $ref: /schemas/types.yaml#/definitions/string

    enum:
      - host
@@ -105,7 +105,7 @@ properties:
        Type-C Cable and Connector specification, when Power Delivery is not
        supported.
    allOf:
      - $ref: /schemas/types.yaml#definitions/string
      - $ref: /schemas/types.yaml#/definitions/string
    enum:
      - default
      - 1.5A
+0 −2
Original line number Diff line number Diff line
@@ -26,11 +26,9 @@ properties:
    description: GPIO connected to active low reset

  dvdd12-supply:
    maxItems: 1
    description: Regulator for 1.2V digital core power.

  dvdd25-supply:
    maxItems: 1
    description: Regulator for 2.5V digital core power.

  ports:
Loading