mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
microblaze: bootm: Fix compiler warning
Fix build warning in arch/microblaze/lib/bootm.c with gcc 7.3.0: warning: this 'if' clause does not guard... [-Wmisleading-indentation] Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Tom Rini <trini@konsulko.com> Reviewed-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
d679a529a4
commit
244ce78a04
1 changed files with 2 additions and 1 deletions
|
@ -62,11 +62,12 @@ int do_bootm_linux(int flag, int argc, char * const argv[],
|
|||
of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16);
|
||||
|
||||
/* fixup the initrd now that we know where it should be */
|
||||
if (images->rd_start && images->rd_end && of_flat_tree)
|
||||
if (images->rd_start && images->rd_end && of_flat_tree) {
|
||||
ret = fdt_initrd(of_flat_tree, images->rd_start,
|
||||
images->rd_end);
|
||||
if (ret)
|
||||
return 1;
|
||||
}
|
||||
|
||||
#ifdef DEBUG
|
||||
printf("## Transferring control to Linux (at address 0x%08lx) ",
|
||||
|
|
Loading…
Reference in a new issue