[PATCH] fix off-by-one error in writing the initrd size into the device tree
Grant Likely
grant.likely at secretlab.ca
Sat Jul 24 08:48:50 EST 2010
Signed-off-by: Grant Likely <grant.likely at secretlab.ca>
---
hw/arm_boot.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/arm_boot.c b/hw/arm_boot.c
index 22fba26..04b29d8 100644
--- a/hw/arm_boot.c
+++ b/hw/arm_boot.c
@@ -220,8 +220,8 @@ static int load_dtb(target_phys_addr_t addr, const struct arm_boot_info *binfo)
fprintf(stderr, "couldn't set /chosen/linux,initrd-start\n");
rc = qemu_devtree_setprop_cell(fdt, "/chosen", "linux,initrd-end",
- binfo->loader_start +INITRD_LOAD_ADDR +
- binfo->initrd_size);
+ binfo->loader_start + INITRD_LOAD_ADDR +
+ binfo->initrd_size - 1);
if (rc < 0)
fprintf(stderr, "couldn't set /chosen/linux,initrd-end\n");
}
More information about the devicetree-discuss
mailing list