summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>2016-05-20 14:19:52 -0400
committerStefano Babic <sbabic@denx.de>2016-05-31 17:37:44 +0200
commitcb82c38eff193d6b0685e26020109ca5cac9f0ea (patch)
tree6d6d84e25ee6dd579f6d72b39000876de3ebac06
parent73f366bb5bec7c728dcfed51110818fa412dd878 (diff)
downloadblackbird-obmc-uboot-cb82c38eff193d6b0685e26020109ca5cac9f0ea.tar.gz
blackbird-obmc-uboot-cb82c38eff193d6b0685e26020109ca5cac9f0ea.zip
cosmetic: mx6slevk: Minor coding-style fix
Fix the brace indentation in board_mmc_init(). Signed-off-by: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
-rw-r--r--board/freescale/mx6slevk/mx6slevk.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/board/freescale/mx6slevk/mx6slevk.c b/board/freescale/mx6slevk/mx6slevk.c
index f1915a8200..256d6029b4 100644
--- a/board/freescale/mx6slevk/mx6slevk.c
+++ b/board/freescale/mx6slevk/mx6slevk.c
@@ -230,14 +230,14 @@ int board_mmc_init(bd_t *bis)
printf("Warning: you configured more USDHC controllers"
"(%d) than supported by the board\n", i + 1);
return -EINVAL;
- }
-
- ret = fsl_esdhc_initialize(bis, &usdhc_cfg[i]);
- if (ret) {
- printf("Warning: failed to initialize "
- "mmc dev %d\n", i);
- return ret;
- }
+ }
+
+ ret = fsl_esdhc_initialize(bis, &usdhc_cfg[i]);
+ if (ret) {
+ printf("Warning: failed to initialize "
+ "mmc dev %d\n", i);
+ return ret;
+ }
}
return 0;
OpenPOWER on IntegriCloud