From: Alexander Dahl Date: Fri, 28 Jun 2019 12:41:22 +0000 (+0200) Subject: fpga: altera: cyclon2: Fix indentation X-Git-Tag: v2019.10-rc2~26^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3911b19cac9dc7d11e7d9e79e80fb62eced74ba7;p=platform%2Fkernel%2Fu-boot.git fpga: altera: cyclon2: Fix indentation Some code parts stood too far left … Signed-off-by: Alexander Dahl --- diff --git a/drivers/fpga/cyclon2.c b/drivers/fpga/cyclon2.c index 99a64d4..ab979b0 100644 --- a/drivers/fpga/cyclon2.c +++ b/drivers/fpga/cyclon2.c @@ -162,28 +162,28 @@ static int CYC2_ps_load(Altera_desc *desc, const void *buf, size_t bsize) putc(' '); /* terminate the dotted line */ #endif - /* - * Checking FPGA's CONF_DONE signal - correctly booted ? - */ - - if (!(*fn->done) (cookie)) { - puts("** Booting failed! CONF_DONE is still deasserted.\n"); - (*fn->abort) (cookie); - return FPGA_FAIL; - } + /* + * Checking FPGA's CONF_DONE signal - correctly booted ? + */ + + if (!(*fn->done) (cookie)) { + puts("** Booting failed! CONF_DONE is still deasserted.\n"); + (*fn->abort) (cookie); + return FPGA_FAIL; + } #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK - puts(" OK\n"); + puts(" OK\n"); #endif - ret_val = FPGA_SUCCESS; + ret_val = FPGA_SUCCESS; #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK - if (ret_val == FPGA_SUCCESS) - puts("Done.\n"); - else - puts("Fail.\n"); + if (ret_val == FPGA_SUCCESS) + puts("Done.\n"); + else + puts("Fail.\n"); #endif - (*fn->post) (cookie); + (*fn->post) (cookie); } else { printf("%s: NULL Interface function table!\n", __func__);