mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
bootm: Drop arguments from bootm_start()
This function does not use its arguments. Drop them. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
This commit is contained in:
parent
e62714ca5f
commit
a50e886a7f
1 changed files with 2 additions and 3 deletions
|
@ -69,8 +69,7 @@ static void boot_start_lmb(struct bootm_headers *images)
|
|||
static inline void boot_start_lmb(struct bootm_headers *images) { }
|
||||
#endif
|
||||
|
||||
static int bootm_start(struct cmd_tbl *cmdtp, int flag, int argc,
|
||||
char *const argv[])
|
||||
static int bootm_start(void)
|
||||
{
|
||||
memset((void *)&images, 0, sizeof(images));
|
||||
images.verify = env_get_yesno("verify");
|
||||
|
@ -783,7 +782,7 @@ int do_bootm_states(struct cmd_tbl *cmdtp, int flag, int argc,
|
|||
* any error.
|
||||
*/
|
||||
if (states & BOOTM_STATE_START)
|
||||
ret = bootm_start(cmdtp, flag, argc, argv);
|
||||
ret = bootm_start();
|
||||
|
||||
if (!ret && (states & BOOTM_STATE_PRE_LOAD))
|
||||
ret = bootm_pre_load(cmdtp, flag, argc, argv);
|
||||
|
|
Loading…
Add table
Reference in a new issue