Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: dmaengine: fsl-imx: deprecate '#dma-channels' and '#dma-requests'

The generic properties, used in most of the drivers and defined in
generic dma-common DT bindings, are 'dma-channels' and 'dma-requests'.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>

authored by

Krzysztof Kozlowski and committed by
Shawn Guo
5bb02760 b1f7836d

+5 -3
+5 -3
Documentation/devicetree/bindings/dma/fsl-imx-dma.txt
··· 13 13 - #dma-cells : Has to be 1. imx-dma does not support anything else. 14 14 15 15 Optional properties: 16 - - #dma-channels : Number of DMA channels supported. Should be 16. 17 - - #dma-requests : Number of DMA requests supported. 16 + - dma-channels : Number of DMA channels supported. Should be 16. 17 + - #dma-channels : deprecated 18 + - dma-requests : Number of DMA requests supported. 19 + - #dma-requests : deprecated 18 20 19 21 Example: 20 22 ··· 25 23 reg = <0x10001000 0x1000>; 26 24 interrupts = <32 33>; 27 25 #dma-cells = <1>; 28 - #dma-channels = <16>; 26 + dma-channels = <16>; 29 27 }; 30 28 31 29