diff options
author | Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | 2022-05-16 16:28:55 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2022-05-27 16:07:34 +0200 |
commit | 286b8073541ba8a295620c64ab9827f5153ad19b (patch) | |
tree | 11111bdd0d17b7b1cdb24632b781e80ad9c07b2f /arch/arm/boot/dts/pxa3xx.dtsi | |
parent | soc: ixp4xx/qmgr: Fix unused match warning (diff) | |
download | linux-286b8073541ba8a295620c64ab9827f5153ad19b.tar.xz linux-286b8073541ba8a295620c64ab9827f5153ad19b.zip |
ARM: dts: pxa: use new 'dma-channels/requests' properties
The '#dma-channels' and '#dma-requests' properties were deprecated in
favor of these defined by generic dma-common DT bindings. Add new
properties while keeping old ones for backwards compatibility.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20220516142857.6419-2-krzysztof.kozlowski@linaro.org'
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to '')
-rw-r--r-- | arch/arm/boot/dts/pxa3xx.dtsi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/pxa3xx.dtsi b/arch/arm/boot/dts/pxa3xx.dtsi index d19674812cd2..f9c216f91865 100644 --- a/arch/arm/boot/dts/pxa3xx.dtsi +++ b/arch/arm/boot/dts/pxa3xx.dtsi @@ -122,9 +122,12 @@ compatible = "marvell,pdma-1.0"; reg = <0x40000000 0x10000>; interrupts = <25>; - #dma-channels = <32>; #dma-cells = <2>; + /* For backwards compatibility: */ + #dma-channels = <32>; + dma-channels = <32>; #dma-requests = <100>; + dma-requests = <100>; status = "okay"; }; |