X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=cmd%2Fbooti.c;h=04353b68eccc0d73d62c44128016da883fd9a5c5;hb=a280e9db64ba76dc5a0c800f83da2be1681c3a64;hp=fff936976355e1f261eca5eb7ae9ce49d994691f;hpb=bf14d9a7e12e319bfd8fc8c54ef416331287cfda;p=u-boot diff --git a/cmd/booti.c b/cmd/booti.c index fff9369763..04353b68ec 100644 --- a/cmd/booti.c +++ b/cmd/booti.c @@ -1,8 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2000-2009 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. - * - * SPDX-License-Identifier: GPL-2.0+ */ #include @@ -14,8 +13,6 @@ #include #include -DECLARE_GLOBAL_DATA_PTR; - /* * Image booting support */ @@ -40,7 +37,7 @@ static int booti_start(cmd_tbl_t *cmdtp, int flag, int argc, debug("* kernel: cmdline image address = 0x%08lx\n", ld); } - ret = booti_setup(ld, &relocated_addr, &image_size); + ret = booti_setup(ld, &relocated_addr, &image_size, false); if (ret != 0) return 1;