diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-08-06 13:46:36 +0000 |
---|---|---|
committer | Macpaul Lin <macpaul@gmail.com> | 2012-08-11 00:43:28 +0800 |
commit | 782ff0cd8704422c355be8fccc06bc62f0cf11b2 (patch) | |
tree | 007648ad4c450d195e16bea91f8834ac3fd4860c /arch/nds32 | |
parent | 38230ee7bb8d8854a4246c0fba2b5dfcc7876e7f (diff) |
nds32: delete unused local variable
Fixes the build-time warning:
board.c: In function 'board_init_r':
board.c:304: warning: unused variable 's'
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/nds32')
-rw-r--r-- | arch/nds32/lib/board.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/nds32/lib/board.c b/arch/nds32/lib/board.c index 7121313a83a..f5de26678a6 100644 --- a/arch/nds32/lib/board.c +++ b/arch/nds32/lib/board.c @@ -301,7 +301,6 @@ void board_init_f(ulong bootflag) */ void board_init_r(gd_t *id, ulong dest_addr) { - char *s; bd_t *bd; ulong malloc_start; |