From: Bin Meng Date: Wed, 8 Jul 2020 07:19:22 +0000 (-0700) Subject: arm: cmd_stm32prog: Fix the CONFIG_IS_ENABLED() usage X-Git-Tag: v2020.10~124^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d5de35b6f2f65ae882bab7deef279eda2b40c4a;p=platform%2Fkernel%2Fu-boot.git arm: cmd_stm32prog: Fix the CONFIG_IS_ENABLED() usage Add parentheses around CONFIG_IS_ENABLED() in the if statement, to fix potential build failures. Signed-off-by: Bin Meng Reviewed-by: Patrick Delaunay --- diff --git a/arch/arm/mach-stm32mp/cmd_stm32prog/cmd_stm32prog.c b/arch/arm/mach-stm32mp/cmd_stm32prog/cmd_stm32prog.c index 0722e4a..cbf0120 100644 --- a/arch/arm/mach-stm32mp/cmd_stm32prog/cmd_stm32prog.c +++ b/arch/arm/mach-stm32mp/cmd_stm32prog/cmd_stm32prog.c @@ -147,7 +147,7 @@ static int do_stm32prog(struct cmd_tbl *cmdtp, int flag, int argc, /* Try bootm for legacy and FIT format image */ if (genimg_get_format((void *)uimage) != IMAGE_FORMAT_INVALID) do_bootm(cmdtp, 0, 4, bootm_argv); - else if CONFIG_IS_ENABLED(CMD_BOOTZ) + else if (CONFIG_IS_ENABLED(CMD_BOOTZ)) do_bootz(cmdtp, 0, 4, bootm_argv); }