arch/arm/lib/board.c: fix warning: variable ... set but not used

Fix:
board.c:445:8: warning: variable 'bd' set but not used [-Wunused-but-set-variable]

Signed-off-by: Wolfgang Denk <wd@denx.de>
Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
This commit is contained in:
Wolfgang Denk 2011-10-05 22:44:43 +02:00
parent 1a9845b4f0
commit 80c6abc306

View File

@ -442,14 +442,12 @@ static char *failed = "*** failed ***\n";
void board_init_r(gd_t *id, ulong dest_addr) void board_init_r(gd_t *id, ulong dest_addr)
{ {
char *s; char *s;
bd_t *bd;
ulong malloc_start; ulong malloc_start;
#if !defined(CONFIG_SYS_NO_FLASH) #if !defined(CONFIG_SYS_NO_FLASH)
ulong flash_size; ulong flash_size;
#endif #endif
gd = id; gd = id;
bd = gd->bd;
gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */ 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 #ifdef CONFIG_GENERIC_MMC
puts("MMC: "); puts("MMC: ");
mmc_initialize(bd); mmc_initialize(gd->bd);
#endif #endif
#ifdef CONFIG_HAS_DATAFLASH #ifdef CONFIG_HAS_DATAFLASH