diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2018-02-12 17:54:37 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-02-13 20:34:07 -0500 |
commit | 244ce78a04b9c63c11360ae7e1f6217c6bcec1d6 (patch) | |
tree | 788d516f2bb6a1cf4672fc97f52d456ff3a66a36 /arch/microblaze | |
parent | d679a529a476e4909ae8603b7bd9c9b9611d42e3 (diff) |
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>
Diffstat (limited to 'arch/microblaze')
-rw-r--r-- | arch/microblaze/lib/bootm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/microblaze/lib/bootm.c b/arch/microblaze/lib/bootm.c index 0a286e82c2b..93525cc2a52 100644 --- a/arch/microblaze/lib/bootm.c +++ b/arch/microblaze/lib/bootm.c @@ -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) ", |