diff options
author | Paul Cercueil <paul@crapouillou.net> | 2020-04-13 17:26:26 +0200 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2020-04-29 22:52:03 +0200 |
commit | 59bd128a412702931afaf758af6b640e3528d1b5 (patch) | |
tree | 5ae36af8827c3f8595ac7ab494e88f9e7f416e28 /arch/mips/boot | |
parent | 2c3cc858a68707dd710aefddd737e9f6aa0a16e1 (diff) | |
download | linux-59bd128a412702931afaf758af6b640e3528d1b5.tar.bz2 |
MIPS: ingenic: DTS: Fix invalid value in #dma-cells
The driver requires two cells and not just one.
Since these nodes are both disabled as no hardware currently use them,
this fix does not really requires a Fixes: tag.
Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'arch/mips/boot')
-rw-r--r-- | arch/mips/boot/dts/ingenic/jz4770.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/boot/dts/ingenic/jz4770.dtsi b/arch/mips/boot/dts/ingenic/jz4770.dtsi index 0bfb9edff3d0..3805816cea2e 100644 --- a/arch/mips/boot/dts/ingenic/jz4770.dtsi +++ b/arch/mips/boot/dts/ingenic/jz4770.dtsi @@ -222,7 +222,7 @@ reg = <0x13420000 0xC0 0x13420300 0x20>; - #dma-cells = <1>; + #dma-cells = <2>; clocks = <&cgu JZ4770_CLK_DMA>; interrupt-parent = <&intc>; @@ -237,7 +237,7 @@ reg = <0x13420100 0xC0 0x13420400 0x20>; - #dma-cells = <1>; + #dma-cells = <2>; clocks = <&cgu JZ4770_CLK_DMA>; interrupt-parent = <&intc>; |