diff options
author | Felipe Balbi <balbi@ti.com> | 2012-01-26 13:20:07 +0200 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2012-03-24 23:07:35 +0100 |
commit | db7f4e3d2b0a68eafc16a7b78ac0b7566db1e799 (patch) | |
tree | 137284973df0b6caf024da064df6699fa0eed04f /scripts/dtc/flattree.c | |
parent | fb68d4be95fef4aab82c2a97da93a898d532dd57 (diff) | |
download | op-kernel-dev-db7f4e3d2b0a68eafc16a7b78ac0b7566db1e799.zip op-kernel-dev-db7f4e3d2b0a68eafc16a7b78ac0b7566db1e799.tar.gz |
scripts: dtc: fix compile warnings
Fix following compile warnings:
scripts/dtc/flattree.c: In function ‘flat_read_mem_reserve’:
scripts/dtc/flattree.c:700:14: warning: variable ‘p’ set but not used
[-Wunused-but-set-variable]
scripts/dtc/dtc.c: In function ‘main’:
scripts/dtc/dtc.c:104:17: warning: variable ‘check’ set but not used
[-Wunused-but-set-variable]
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/dtc/flattree.c')
-rw-r--r-- | scripts/dtc/flattree.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/dtc/flattree.c b/scripts/dtc/flattree.c index ead0332..28d0b23 100644 --- a/scripts/dtc/flattree.c +++ b/scripts/dtc/flattree.c @@ -697,7 +697,6 @@ static struct reserve_info *flat_read_mem_reserve(struct inbuf *inb) { struct reserve_info *reservelist = NULL; struct reserve_info *new; - const char *p; struct fdt_reserve_entry re; /* @@ -706,7 +705,6 @@ static struct reserve_info *flat_read_mem_reserve(struct inbuf *inb) * * First pass, count entries. */ - p = inb->ptr; while (1) { flat_read_chunk(inb, &re, sizeof(re)); re.address = fdt64_to_cpu(re.address); |