From 91be51284600fcccbc165cf55d3420124c0f33fa Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Thu, 31 Aug 2017 19:58:11 +0900 Subject: [PATCH] uniphier: fix code indent for conditional statement checkpatch.pl from Linux reports tons of coding style errors and warnings. I am just fixing under plat/socionext/uniphier/. Signed-off-by: Masahiro Yamada --- plat/socionext/uniphier/uniphier_nand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plat/socionext/uniphier/uniphier_nand.c b/plat/socionext/uniphier/uniphier_nand.c index 88f906c24..a118b8512 100644 --- a/plat/socionext/uniphier/uniphier_nand.c +++ b/plat/socionext/uniphier/uniphier_nand.c @@ -108,7 +108,7 @@ static int uniphier_nand_block_isbad(struct uniphier_nand *nand, int block) /* if possible, save the result for future re-use */ if (block < ARRAY_SIZE(nand->bbt)) - nand->bbt[block] = is_bad; + nand->bbt[block] = is_bad; if (is_bad) WARN("found bad block at %d. skip.\n", block); -- GitLab