diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-05-21 12:33:26 +0200 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2013-05-28 14:48:15 +0000 |
commit | 911492de45ccefc2bff4b8e0fb412287ca6fe9d9 (patch) | |
tree | 9953b7180b01236ef98571c64a455abce88173e0 /arch/arm/boot/dts/armada-370-xp.dtsi | |
parent | e4aa937ec75df0eea0bee03bffa3303ad36c986b (diff) | |
download | lwn-911492de45ccefc2bff4b8e0fb412287ca6fe9d9.tar.gz lwn-911492de45ccefc2bff4b8e0fb412287ca6fe9d9.zip |
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: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/boot/dts/armada-370-xp.dtsi')
-rw-r--r-- | arch/arm/boot/dts/armada-370-xp.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/armada-370-xp.dtsi b/arch/arm/boot/dts/armada-370-xp.dtsi index 550eb772c30e..c62444a0cb73 100644 --- a/arch/arm/boot/dts/armada-370-xp.dtsi +++ b/arch/arm/boot/dts/armada-370-xp.dtsi @@ -80,7 +80,7 @@ sata@a0000 { compatible = "marvell,orion-sata"; - reg = <0xa0000 0x2400>; + reg = <0xa0000 0x5000>; interrupts = <55>; clocks = <&gateclk 15>, <&gateclk 30>; clock-names = "0", "1"; |