* [PATCH] fix off-by-one error in writing the initrd size into the device tree
@ 2010-07-23 22:48 Grant Likely
0 siblings, 0 replies; only message in thread
From: Grant Likely @ 2010-07-23 22:48 UTC (permalink / raw)
To: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
jeremy.kerr-Z7WLFzj8eWMS+FvcfC7Uqw
Signed-off-by: Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>
---
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");
}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2010-07-23 22:48 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-23 22:48 [PATCH] fix off-by-one error in writing the initrd size into the device tree Grant Likely
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.