mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 22:51:37 +00:00
MIPS: lib_mips/board.c: Remove unused variables
This fixes the following build warnings: board.c: In function 'board_init_r': board.c:328: warning: unused variable 'i' board.c:326: warning: unused variable 'e' Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
This commit is contained in:
parent
47f6a36cc3
commit
c06326c73b
1 changed files with 1 additions and 2 deletions
|
@ -323,9 +323,8 @@ void board_init_r (gd_t *id, ulong dest_addr)
|
||||||
#ifndef CONFIG_ENV_IS_NOWHERE
|
#ifndef CONFIG_ENV_IS_NOWHERE
|
||||||
extern char * env_name_spec;
|
extern char * env_name_spec;
|
||||||
#endif
|
#endif
|
||||||
char *s, *e;
|
char *s;
|
||||||
bd_t *bd;
|
bd_t *bd;
|
||||||
int i;
|
|
||||||
|
|
||||||
gd = id;
|
gd = id;
|
||||||
gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
|
gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
|
||||||
|
|
Loading…
Add table
Reference in a new issue