summaryrefslogtreecommitdiff
path: root/arch/sandbox/lib/bootm.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-12-15 20:14:13 -0700
committerTom Rini <trini@konsulko.com>2023-12-21 16:07:52 -0500
commita48336e5ea19ca0d32dfff1c4eaeececa8d2f570 (patch)
treef91a41bf86cfbfdb9163f55a024c9ce7946293ef /arch/sandbox/lib/bootm.c
parentc49216253d4357500a96b849bc3a02896093a9a9 (diff)
bootm: Adjust arguments of boot_os_fn
Adjust boot_os_fn to use struct bootm_info instead of the separate argc, argv and image parameters. Update the handlers accordingly. Few of the functions make use of the arguments, so this improves code size slightly. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/sandbox/lib/bootm.c')
-rw-r--r--arch/sandbox/lib/bootm.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/sandbox/lib/bootm.c b/arch/sandbox/lib/bootm.c
index a748ba650b1..e56de90e75b 100644
--- a/arch/sandbox/lib/bootm.c
+++ b/arch/sandbox/lib/bootm.c
@@ -5,6 +5,7 @@
*/
#include <common.h>
+#include <bootm.h>
#include <bootstage.h>
#include <image.h>
#include <asm/io.h>
@@ -64,8 +65,10 @@ static int boot_prep_linux(struct bootm_headers *images)
return 0;
}
-int do_bootm_linux(int flag, int argc, char *argv[], struct bootm_headers *images)
+int do_bootm_linux(int flag, struct bootm_info *bmi)
{
+ struct bootm_headers *images = bmi->images;
+
if (flag & BOOTM_STATE_OS_PREP)
return boot_prep_linux(images);