diff options
| author | Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | 2024-05-21 10:30:02 +0200 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-06-27 13:52:29 +0200 |
| commit | 261614d0156b398823766fde7d813184ba3628ca (patch) | |
| tree | bdcdfc0cac135de2915ad8981053c4982843fa19 | |
| parent | 068eb46639fff326f1a236d91f4d336af4a54734 (diff) | |
| download | linux-261614d0156b398823766fde7d813184ba3628ca.tar.gz linux-261614d0156b398823766fde7d813184ba3628ca.tar.bz2 linux-261614d0156b398823766fde7d813184ba3628ca.zip | |
dt-bindings: dma: fsl-edma: fix dma-channels constraints
commit 1345a13f18370ad9e5bc98995959a27f9bd71464 upstream.
dma-channels is a number, not a list. Apply proper constraints on the
actual number.
Fixes: 6eb439dff645 ("dt-bindings: fsl-dma: fsl-edma: add edma3 compatible string")
Cc: stable@vger.kernel.org
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Acked-by: Rob Herring (Arm) <robh@kernel.org>
Link: https://lore.kernel.org/r/20240521083002.23262-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | Documentation/devicetree/bindings/dma/fsl,edma.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/devicetree/bindings/dma/fsl,edma.yaml b/Documentation/devicetree/bindings/dma/fsl,edma.yaml index aa51d278cb67..83e77ee4894e 100644 --- a/Documentation/devicetree/bindings/dma/fsl,edma.yaml +++ b/Documentation/devicetree/bindings/dma/fsl,edma.yaml @@ -48,8 +48,8 @@ properties: - 3 dma-channels: - minItems: 1 - maxItems: 64 + minimum: 1 + maximum: 64 clocks: minItems: 1 |
