diff options
author | Simon Glass <sjg@chromium.org> | 2016-02-24 09:14:42 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-02-26 08:53:10 -0700 |
commit | 7a80de464167ec45fdb70f63d83d07f7c2c57b82 (patch) | |
tree | fd70b67850d122106608b94979f9de99804755ad /include | |
parent | 24862c640ea50ac88be343161eb681bea5dbfeef (diff) | |
download | talos-obmc-uboot-7a80de464167ec45fdb70f63d83d07f7c2c57b82.tar.gz talos-obmc-uboot-7a80de464167ec45fdb70f63d83d07f7c2c57b82.zip |
image: Correct the OS location code to work on sandbox
A recent change broke the 'bootm' command on sandbox. The root cause is
using a pointer as an address. Conversion from pointer to address needs to
use map_to_sysmem() so that sandbox can do the right thing. The problem was
pre-existing but uncovered by a recent commit.
Fix this. Also move fit_get_end() to the C file to avoid needing to include
mapmem.h (and thus asm/io.h) everywhere.
Fixes: 1fec3c5d (common/image.c: Make boot_get_ramdisk() perform a check for Android images)
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/image.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/image.h b/include/image.h index 299d6d2a13..518a4f5291 100644 --- a/include/image.h +++ b/include/image.h @@ -818,10 +818,7 @@ static inline ulong fit_get_size(const void *fit) * returns: * end address of the FIT image (blob) in memory */ -static inline ulong fit_get_end(const void *fit) -{ - return (ulong)fit + fdt_totalsize(fit); -} +ulong fit_get_end(const void *fit); /** * fit_get_name - get FIT node name |