diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-29 00:42:50 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-29 00:42:50 +0000 |
commit | 89d56e787a9f26fa384e15d3deb3c421bcdee15b (patch) | |
tree | 2a58cc43cdcf5abd01b0b0d068d8fb785fc0ddc9 /target | |
parent | 10b5051e14e02fd973852768f67620dea657c91c (diff) | |
download | master-187ad058-89d56e787a9f26fa384e15d3deb3c421bcdee15b.tar.gz master-187ad058-89d56e787a9f26fa384e15d3deb3c421bcdee15b.tar.bz2 master-187ad058-89d56e787a9f26fa384e15d3deb3c421bcdee15b.zip |
lantiq: Make the ar9.dtsi sram node match "simple-bus"
All other SoC types are using "lantiq,sram" and "simple-bus" to ensure
that all child nodes are set up correctly during linux kernel
initialization (plat_of_setup(void) in arch/mips/lantiq/prom.c). Without
this some of sram child nodes might not be parsed.
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48548 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/lantiq/dts/ar9.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/lantiq/dts/ar9.dtsi b/target/linux/lantiq/dts/ar9.dtsi index 0be95c3711..9feb8a0e51 100644 --- a/target/linux/lantiq/dts/ar9.dtsi +++ b/target/linux/lantiq/dts/ar9.dtsi @@ -40,7 +40,7 @@ sram@1F000000 { #address-cells = <1>; #size-cells = <1>; - compatible = "lantiq,sram"; + compatible = "lantiq,sram", "simple-bus"; reg = <0x1F000000 0x800000>; ranges = <0x0 0x1F000000 0x7FFFFF>; |