diff options
author | Heiko Schocher <hs@denx.de> | 2010-10-25 08:33:38 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-10-26 21:15:35 +0200 |
commit | 1336cad29855b279b6a8873d321a062717495ecf (patch) | |
tree | c10e982424839ada71185a757386b6b43f4fb17f /arch/arm | |
parent | 8f4cb77ef7183ce1bb3f767604a0677c6f6d84a7 (diff) |
arm, bootm: Fix compile warning
Fix warning:
bootm.c: In function 'bootm_linux_fdt':
bootm.c:181: warning: unused variable 's'
bootm.c:180: warning: unused variable 'bd'
Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/lib/bootm.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/lib/bootm.c b/arch/arm/lib/bootm.c index 2e7b2e1f33f..a1649eef0d1 100644 --- a/arch/arm/lib/bootm.c +++ b/arch/arm/lib/bootm.c @@ -177,8 +177,6 @@ static int fixup_memory_node(void *blob) static int bootm_linux_fdt(int machid, bootm_headers_t *images) { ulong rd_len; - bd_t *bd = gd->bd; - char *s; void (*kernel_entry)(int zero, int dt_machid, void *dtblob); ulong bootmap_base = getenv_bootm_low(); ulong of_size = images->ft_len; |