diff options
author | Stepan Moskovchenko <stepanm@codeaurora.org> | 2013-08-07 01:33:06 (GMT) |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2013-08-07 16:33:50 (GMT) |
commit | 35faad2a1563b3d4dc983a82ac41033fe053870c (patch) | |
tree | 39dcb595abe3faa9996f549fa2bc2f7ea55fa2d9 /arch/arm/boot | |
parent | 2746a7c272a3242f919fa2fd5a5f2d9f8a41173a (diff) | |
download | linux-fsl-qoriq-35faad2a1563b3d4dc983a82ac41033fe053870c.tar.xz |
ARM: dts: Fix memory node in skeleton64.dtsi
Update the reg property of the memory node in
skeleton64.dtsi to reflect the fact that the root node uses
address-cells=2 and size-cells=2.
Signed-off-by: Stepan Moskovchenko <stepanm@codeaurora.org>
Acked-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r-- | arch/arm/boot/dts/skeleton64.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/skeleton64.dtsi b/arch/arm/boot/dts/skeleton64.dtsi index 1599415..b5d7f36 100644 --- a/arch/arm/boot/dts/skeleton64.dtsi +++ b/arch/arm/boot/dts/skeleton64.dtsi @@ -9,5 +9,5 @@ #size-cells = <2>; chosen { }; aliases { }; - memory { device_type = "memory"; reg = <0 0>; }; + memory { device_type = "memory"; reg = <0 0 0 0>; }; }; |