diff options
author | Taylor Hutt <thutt@chromium.org> | 2012-11-30 13:01:23 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-01-10 22:28:36 +0100 |
commit | 80e409508b9bba8c372cdd44565a3d472b10e904 (patch) | |
tree | 09dc3d284ac74a4c740340d04445cc2eab6394a9 | |
parent | 2f8d8d6b3aedcea36db84872a4174eb8d5903f8f (diff) | |
download | u-boot-imx-80e409508b9bba8c372cdd44565a3d472b10e904.zip u-boot-imx-80e409508b9bba8c372cdd44565a3d472b10e904.tar.gz u-boot-imx-80e409508b9bba8c372cdd44565a3d472b10e904.tar.bz2 |
arm: Tabify code for MMC initialization
The two modified lines were indented with spaces.
They are now indented with tabs.
Signed-off-by: Taylor Hutt <thutt@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | arch/arm/lib/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c index 404ef4d..cfe32cc 100644 --- a/arch/arm/lib/board.c +++ b/arch/arm/lib/board.c @@ -599,8 +599,8 @@ void board_init_r(gd_t *id, ulong dest_addr) #endif #ifdef CONFIG_GENERIC_MMC - puts("MMC: "); - mmc_initialize(gd->bd); + puts("MMC: "); + mmc_initialize(gd->bd); #endif #ifdef CONFIG_HAS_DATAFLASH |