diff options
author | Marian Balakowicz <m8@semihalf.com> | 2008-02-27 11:01:04 +0100 |
---|---|---|
committer | Marian Balakowicz <m8@semihalf.com> | 2008-02-27 11:01:04 +0100 |
commit | 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658 (patch) | |
tree | aa2ea4432bc432b7cb925302d1fa003b8083059a /lib_nios | |
parent | 823afe7cefe00dafefc6696c1cc7aa828c394234 (diff) | |
download | u-boot-odroid-c1-8a5ea3e6168fe6a2780eeaf257a3b19f30dec658.tar.gz |
[new uImage] Move image verify flag to bootm_headers structure
Do not pass image verification flag directly to related routines.
Simplify argument passing and move it to the bootm_header structure which
contains curently processed image specific data and is already being passed
on the argument list.
Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'lib_nios')
-rw-r--r-- | lib_nios/bootm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_nios/bootm.c b/lib_nios/bootm.c index 92a58f2b7f..fb2e9b5205 100644 --- a/lib_nios/bootm.c +++ b/lib_nios/bootm.c @@ -29,6 +29,6 @@ * */ void do_bootm_linux(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[], - bootm_headers_t *images, int verify) + bootm_headers_t *images) { } |