aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/lib
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/lib')
-rw-r--r--arch/arm/lib/board.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c
index 705d4d2f6..1fe3751fc 100644
--- a/arch/arm/lib/board.c
+++ b/arch/arm/lib/board.c
@@ -442,14 +442,12 @@ static char *failed = "*** failed ***\n";
void board_init_r(gd_t *id, ulong dest_addr)
{
char *s;
- bd_t *bd;
ulong malloc_start;
#if !defined(CONFIG_SYS_NO_FLASH)
ulong flash_size;
#endif
gd = id;
- bd = gd->bd;
gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
@@ -517,7 +515,7 @@ void board_init_r(gd_t *id, ulong dest_addr)
#ifdef CONFIG_GENERIC_MMC
puts("MMC: ");
- mmc_initialize(bd);
+ mmc_initialize(gd->bd);
#endif
#ifdef CONFIG_HAS_DATAFLASH