Skip to content

Commit

Permalink
aspeed: correct sram address in ast2400.dtsi
Browse files Browse the repository at this point in the history
The sram reg and name properties were missing a zero.  It was more
obvious when looking at the platform device names which put the address
before the generic name.

Signed-off-by: Milton Miller <miltonm@us.ibm.com>
Signed-off-by: Joel Stanley <joel@jms.id.au>
  • Loading branch information
Milton D. Miller II authored and Joel Stanley committed Dec 10, 2015
1 parent a420ac8 commit 9a1fd0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/boot/dts/ast2400.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@
#size-cells = <1>;
ranges;

sram@1e72000 {
sram@1e720000 {
compatible = "mmio-sram";
reg = <0x1e72000 0x8000>; // 32K
reg = <0x1e720000 0x8000>; // 32K
};

ibt@1e789140 {
Expand Down

0 comments on commit 9a1fd0a

Please sign in to comment.