Message ID | 20220830165817.183571-1-manivannan.sadhasivam@linaro.org |
---|---|
Headers | show |
Series | Improvements to the Qcom PCIe Endpoint driver | expand |
On 30/08/2022 19:58, Manivannan Sadhasivam wrote: > clock-names: > - maxItems: 7 > + minItems: 7 > + maxItems: 8 > > qcom,perst-regs: > description: Reference to a syscon representing TCSR followed by the two > @@ -125,6 +129,36 @@ allOf: > - const: sleep > - const: ref > > + - if: > + properties: > + compatible: > + contains: > + enum: > + - qcom,sm8450-pcie-ep > + then: > + properties: > + clocks: > + maxItems: 8 Same as in previous patch - maxItems is not needed now. Best regards, Krzysztof
On Tue, 30 Aug 2022 22:28:15 +0530, Manivannan Sadhasivam wrote: > In preparation of adding the bindings for future SoCs, let's define the > clocks per platform. > > Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> > --- > .../devicetree/bindings/pci/qcom,pcie-ep.yaml | 51 ++++++++++++------- > 1 file changed, 32 insertions(+), 19 deletions(-) > My bot found errors running 'make DT_CHECKER_FLAGS=-m dt_binding_check' on your patch (DT_CHECKER_FLAGS is new in v5.13): yamllint warnings/errors: dtschema/dtc warnings/errors: /builds/robherring/linux-dt-review/Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml: allOf:1:then:properties:clocks: {'maxItems': 7, 'items': [{'description': 'PCIe Auxiliary clock'}, {'description': 'PCIe CFG AHB clock'}, {'description': 'PCIe Master AXI clock'}, {'description': 'PCIe Slave AXI clock'}, {'description': 'PCIe Slave Q2A AXI clock'}, {'description': 'PCIe Sleep clock'}, {'description': 'PCIe Reference clock'}]} should not be valid under {'required': ['maxItems']} hint: "maxItems" is not needed with an "items" list from schema $id: http://devicetree.org/meta-schemas/items.yaml# /builds/robherring/linux-dt-review/Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml: ignoring, error in schema: allOf: 1: then: properties: clocks Documentation/devicetree/bindings/pci/qcom,pcie-ep.example.dtb:0:0: /example-0/pcie-ep@40000000: failed to match any schema with compatible: ['qcom,sdx55-pcie-ep'] doc reference errors (make refcheckdocs): See https://patchwork.ozlabs.org/patch/ This check can fail if there are any dependencies. The base for a patch series is generally the most recent rc1. 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.