From: Wolfgang Denk Date: Sat, 5 Nov 2011 05:13:11 +0000 (+0000) Subject: board/ids8247/ids8247.c: Fix GCC 4.6 build warning X-Git-Tag: v2011.12-rc1~239 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d72512406ac04d89a2d58e866e83eed945dbc461;p=u-boot board/ids8247/ids8247.c: Fix GCC 4.6 build warning Fix: ids8247.c: In function 'initdram': ids8247.c:284:14: warning: variable 'lsize' set but not used [-Wunused-but-set-variable] Signed-off-by: Wolfgang Denk Cc: Heiko Schocher --- diff --git a/board/ids8247/ids8247.c b/board/ids8247/ids8247.c index d621833cc1..02db07f1db 100644 --- a/board/ids8247/ids8247.c +++ b/board/ids8247/ids8247.c @@ -281,10 +281,9 @@ phys_size_t initdram (int board_type) volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR; volatile memctl8260_t *memctl = &immap->im_memctl; - long psize, lsize; + long psize; psize = 16 * 1024 * 1024; - lsize = 0; memctl->memc_psrt = CONFIG_SYS_PSRT; memctl->memc_mptpr = CONFIG_SYS_MPTPR;