Skip to content

Commit

Permalink
[POWERPC] 85xx: Fix the size of qe muram for MPC8568E
Browse files Browse the repository at this point in the history
MPC8568E has 64K byte MURAM, so the size should be 0x10000, not 0xc000.

Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
  • Loading branch information
Haiying Wang authored and Kumar Gala committed Apr 17, 2008
1 parent 16787b4 commit 8bdf573
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/powerpc/boot/dts/mpc8568mds.dts
Original file line number Diff line number Diff line change
Expand Up @@ -291,12 +291,12 @@
#address-cells = <1>;
#size-cells = <1>;
compatible = "fsl,qe-muram", "fsl,cpm-muram";
ranges = <0x0 0x10000 0xc000>;
ranges = <0x0 0x10000 0x10000>;

data-only@0 {
compatible = "fsl,qe-muram-data",
"fsl,cpm-muram-data";
reg = <0x0 0xc000>;
reg = <0x0 0x10000>;
};
};

Expand Down

0 comments on commit 8bdf573

Please sign in to comment.