Message ID | 20250304093127.1954549-2-ping.bai@nxp.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | Add i.MX943 basic dts support | expand |
On Tue, 04 Mar 2025 17:31:24 +0800, Jacky Bai wrote: > Add interrupts-extended property for edma that has multiple interrupt > controllers used. > > Signed-off-by: Jacky Bai <ping.bai@nxp.com> > --- > - v2 changes: > - newly added entry > --- > Documentation/devicetree/bindings/dma/fsl,edma.yaml | 11 ++++++++++- > 1 file changed, 10 insertions(+), 1 deletion(-) > My bot found errors running 'make dt_binding_check' on your patch: yamllint warnings/errors: ./Documentation/devicetree/bindings/dma/fsl,edma.yaml:102:5: [warning] wrong indentation: expected 6 but found 4 (indentation) ./Documentation/devicetree/bindings/dma/fsl,edma.yaml:104:5: [warning] wrong indentation: expected 6 but found 4 (indentation) dtschema/dtc warnings/errors: doc reference errors (make refcheckdocs): See https://patchwork.ozlabs.org/project/devicetree-bindings/patch/20250304093127.1954549-2-ping.bai@nxp.com The base for the series is generally the latest rc1. A different dependency should be noted in *this* patch. If you already ran 'make dt_binding_check' and didn't see the above error(s), then make sure 'yamllint' is installed and dt-schema is up to date: pip3 install dtschema --upgrade Please check and re-submit after running the above command yourself. Note that DT_SCHEMA_FILES can be set to your schema file to speed up checking your schema. However, it must be unset to test all examples with your schema.
diff --git a/Documentation/devicetree/bindings/dma/fsl,edma.yaml b/Documentation/devicetree/bindings/dma/fsl,edma.yaml index d54140f18d34..549afb8611a9 100644 --- a/Documentation/devicetree/bindings/dma/fsl,edma.yaml +++ b/Documentation/devicetree/bindings/dma/fsl,edma.yaml @@ -38,6 +38,10 @@ properties: minItems: 1 maxItems: 64 + interrupts-extended: + minItems: 1 + maxItems: 65 + interrupt-names: minItems: 1 maxItems: 64 @@ -87,9 +91,14 @@ required: - "#dma-cells" - compatible - reg - - interrupts - dma-channels +oneOf: + - required: + - interrupts + - required: + - interrupts-extended + allOf: - $ref: dma-controller.yaml# - if:
Add interrupts-extended property for edma that has multiple interrupt controllers used. Signed-off-by: Jacky Bai <ping.bai@nxp.com> --- - v2 changes: - newly added entry --- Documentation/devicetree/bindings/dma/fsl,edma.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-)