Skip to content

Commit eb7f1c5

Browse files
rjarzmikgregkh
authored andcommitted
ARM: dts: pxa: fix dma engine node to pxa3xx-nand
commit 07c6b2d01d351f0512ed7145625265e435ab3240 upstream. Since the switch from mmp_pdma to pxa_dma driver for pxa architectures, the pxa_dma requires 2 arguments, namely the requestor line and the requested priority. Fix the only left device node which was still passing only one argument, making the pxa3xx-nand driver misbehave in a device-tree configuration, ie. failing all data transfers. Fixes: c943646 ("ARM: dts: pxa: add dma engine node to pxa3xx-nand") Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent ea075ae commit eb7f1c5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/arm/boot/dts/pxa3xx.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
reg = <0x43100000 90>;
3131
interrupts = <45>;
3232
clocks = <&clks CLK_NAND>;
33-
dmas = <&pdma 97>;
33+
dmas = <&pdma 97 3>;
3434
dma-names = "data";
3535
#address-cells = <1>;
3636
#size-cells = <1>;

0 commit comments

Comments
 (0)