diff options
author | 2012-10-06 02:02:05 +0200 | |
---|---|---|
committer | 2012-12-13 15:31:59 -0600 | |
commit | b826134f1026c0db32f0d3ef36132a4c6a762e78 (patch) | |
tree | 62806bb2839f156ce1ee0023a56c24cb29524feb | |
parent | s390x: fix -initrd in virtio machine (diff) | |
download | qemu-kvm-b826134f1026c0db32f0d3ef36132a4c6a762e78.tar.gz qemu-kvm-b826134f1026c0db32f0d3ef36132a4c6a762e78.tar.bz2 qemu-kvm-b826134f1026c0db32f0d3ef36132a4c6a762e78.zip |
PPC: Bamboo: Fix memory size DT property
Device tree properties need to be specified in big endian. Fix the
bamboo memory size property accordingly.
Signed-off-by: Alexander Graf <agraf@suse.de>
CC: qemu-stable@nongnu.org
(cherry picked from commit 5232fa59b17b45c04bd24e0d38224964816bf391)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
(cherry picked from commit db6e5ab78efd1d0c07945fcff6f42e9acb8929ed)
-rw-r--r-- | hw/ppc440_bamboo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc440_bamboo.c b/hw/ppc440_bamboo.c index c19807117..928643811 100644 --- a/hw/ppc440_bamboo.c +++ b/hw/ppc440_bamboo.c @@ -59,7 +59,7 @@ static int bamboo_load_device_tree(target_phys_addr_t addr, { int ret = -1; #ifdef CONFIG_FDT - uint32_t mem_reg_property[] = { 0, 0, ramsize }; + uint32_t mem_reg_property[] = { 0, 0, cpu_to_be32(ramsize) }; char *filename; int fdt_size; void *fdt; |