Commit 911492de authored by Thomas Petazzoni's avatar Thomas Petazzoni Committed by Jason Cooper

arm: mvebu: fix length of SATA registers area in .dtsi

The length of the registers area for the Marvell 370/XP SATA
controller was incorrect in the .dtsi: 0x2400 while it should have
been 0x5000. Until now, this problem wasn't noticed because there was
a large static mapping for all I/Os set up by ->map_io(). But since
we're going to get rid of this static mapping, we need to ensure that
the register areas are properly sized.
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarJason Cooper <jason@lakedaemon.net>
parent e4aa937e
...@@ -80,7 +80,7 @@ timer@20300 { ...@@ -80,7 +80,7 @@ timer@20300 {
sata@a0000 { sata@a0000 {
compatible = "marvell,orion-sata"; compatible = "marvell,orion-sata";
reg = <0xa0000 0x2400>; reg = <0xa0000 0x5000>;
interrupts = <55>; interrupts = <55>;
clocks = <&gateclk 15>, <&gateclk 30>; clocks = <&gateclk 15>, <&gateclk 30>;
clock-names = "0", "1"; clock-names = "0", "1";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment