diff options
author | Amelie Delaunay <amelie.delaunay@st.com> | 2020-11-10 15:27:37 +0100 |
---|---|---|
committer | Alexandre Torgue <alexandre.torgue@foss.st.com> | 2020-11-26 14:42:41 +0100 |
commit | 7e4bc946db78ec0311b486fadc929965fda85808 (patch) | |
tree | a712f6189bccf6303834f5dfd3c0f9eb17810063 | |
parent | e3b37ca311bb72411f97d269ee4c6a6738a1e9d9 (diff) | |
download | lwn-7e4bc946db78ec0311b486fadc929965fda85808.tar.gz lwn-7e4bc946db78ec0311b486fadc929965fda85808.zip |
ARM: dts: stm32: fix dmamux reg property on stm32h743
Reg property length should cover all DMAMUX_CxCR registers.
DMAMUX_CxCR Address offset: 0x000 + 0x04 * x (x = 0 to 15), so latest
offset is at 0x3c, so length should be 0x40.
Signed-off-by: Amelie Delaunay <amelie.delaunay@st.com>
Signed-off-by: Alexandre Torgue <alexandre.torgue@st.com>
-rw-r--r-- | arch/arm/boot/dts/stm32h743.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/stm32h743.dtsi b/arch/arm/boot/dts/stm32h743.dtsi index 7febe19e780d..b083afd0ebd6 100644 --- a/arch/arm/boot/dts/stm32h743.dtsi +++ b/arch/arm/boot/dts/stm32h743.dtsi @@ -274,7 +274,7 @@ dmamux1: dma-router@40020800 { compatible = "st,stm32h7-dmamux"; - reg = <0x40020800 0x1c>; + reg = <0x40020800 0x40>; #dma-cells = <3>; dma-channels = <16>; dma-requests = <128>; |