diff options
author | Andreas Bießmann <andreas.devel@googlemail.com> | 2014-10-25 00:54:55 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-27 21:54:13 (GMT) |
commit | e76caa627b9f4ebe061208c48f3c5ca71913e23c (patch) | |
tree | 85c23143004993877c41fc6270b876df2410f67f /common | |
parent | 4a8c3f693ef2b50b5db5a95a2c32531b35d31dc0 (diff) | |
download | u-boot-e76caa627b9f4ebe061208c48f3c5ca71913e23c.tar.xz |
spl: move comment to the right place
Commit ae83d882f5fdf7aa7c5aec09cfafb593153c25d6 moved the fixed size mentioned
in the comment but missed the comment.
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/spl/spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl.c b/common/spl/spl.c index b16664f..d85bab3 100644 --- a/common/spl/spl.c +++ b/common/spl/spl.c @@ -23,6 +23,7 @@ DECLARE_GLOBAL_DATA_PTR; #define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE #endif #ifndef CONFIG_SYS_MONITOR_LEN +/* Unknown U-Boot size, let's assume it will not be more than 200 KB */ #define CONFIG_SYS_MONITOR_LEN (200 * 1024) #endif @@ -92,7 +93,6 @@ void spl_parse_image_header(const struct image_header *header) /* Signature not found - assume u-boot.bin */ debug("mkimage signature not found - ih_magic = %x\n", header->ih_magic); - /* Let's assume U-Boot will not be more than 200 KB */ spl_image.size = CONFIG_SYS_MONITOR_LEN; spl_image.entry_point = CONFIG_SYS_UBOOT_START; spl_image.load_addr = CONFIG_SYS_TEXT_BASE; |