base-files: define yes/no as valid boolean options
[openwrt/staging/lynxis/omap.git] / target / linux / mvebu / patches-3.10 / 0018-arm-mvebu-fix-length-of-SATA-registers-area-in-.dtsi.patch
1 From fc7dfe5cd096f5b5343f01f679a96ebc23e9da67 Mon Sep 17 00:00:00 2001
2 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3 Date: Tue, 21 May 2013 12:33:26 +0200
4 Subject: [PATCH 018/203] arm: mvebu: fix length of SATA registers area in
5 .dtsi
6
7 The length of the registers area for the Marvell 370/XP SATA
8 controller was incorrect in the .dtsi: 0x2400 while it should have
9 been 0x5000. Until now, this problem wasn't noticed because there was
10 a large static mapping for all I/Os set up by ->map_io(). But since
11 we're going to get rid of this static mapping, we need to ensure that
12 the register areas are properly sized.
13
14 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 Signed-off-by: Jason Cooper <jason@lakedaemon.net>
16 ---
17 arch/arm/boot/dts/armada-370-xp.dtsi | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20 --- a/arch/arm/boot/dts/armada-370-xp.dtsi
21 +++ b/arch/arm/boot/dts/armada-370-xp.dtsi
22 @@ -80,7 +80,7 @@
23
24 sata@a0000 {
25 compatible = "marvell,orion-sata";
26 - reg = <0xa0000 0x2400>;
27 + reg = <0xa0000 0x5000>;
28 interrupts = <55>;
29 clocks = <&gateclk 15>, <&gateclk 30>;
30 clock-names = "0", "1";