summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2010-10-20 08:59:16 +0200
committerWolfgang Denk <wd@denx.de>2010-10-20 08:59:16 +0200
commit70994c79caec0b0304aa87d9695c79f1862ea340 (patch)
tree0d46831532344159cf3113eb28e5a82bab084812 /common
parent3ed16071b006dbda65070a4143db74da469f6e30 (diff)
downloadtalos-obmc-uboot-70994c79caec0b0304aa87d9695c79f1862ea340.tar.gz
talos-obmc-uboot-70994c79caec0b0304aa87d9695c79f1862ea340.zip
common/fdt_support.c: Fix compile warnings
Commit a6bd9e8 "FDT: Add fixup support for multiple banks of memory" removed code but forgot to remove the variables used by it, resulting in warnings: fdt_support.c: In function 'fdt_fixup_memory_banks': fdt_support.c:399: warning: unused variable 'sizecell' fdt_support.c:399: warning: unused variable 'addrcell' Remove the declarations, too. Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'common')
-rw-r--r--common/fdt_support.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/common/fdt_support.c b/common/fdt_support.c
index 90e909795b..5829afd2ad 100644
--- a/common/fdt_support.c
+++ b/common/fdt_support.c
@@ -396,7 +396,6 @@ int fdt_fixup_memory_banks(void *blob, u64 start[], u64 size[], int banks)
int addr_cell_len, size_cell_len, len;
u8 tmp[banks * 8];
int bank;
- const u32 *addrcell, *sizecell;
err = fdt_check_header(blob);
if (err < 0) {
OpenPOWER on IntegriCloud