From: Wolfgang Denk Date: Fri, 4 Nov 2011 15:55:53 +0000 (+0000) Subject: board/tqc/tqm8272/tqm8272.c: Fix GCC 4.6 build warning: X-Git-Tag: v2011.12-rc1~260 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1f8843344221f9e7b2de598b0ccd289abb85c58d;p=u-boot board/tqc/tqm8272/tqm8272.c: Fix GCC 4.6 build warning: Fix: tqm8272.c: In function 'initdram': tqm8272.c:462:14: warning: variable 'lsize' set but not used [-Wunused-but-set-variable] Signed-off-by: Wolfgang Denk --- diff --git a/board/tqc/tqm8272/tqm8272.c b/board/tqc/tqm8272/tqm8272.c index 9efb54125e..5aca227789 100644 --- a/board/tqc/tqm8272/tqm8272.c +++ b/board/tqc/tqm8272/tqm8272.c @@ -459,10 +459,9 @@ phys_size_t initdram (int board_type) #ifndef CONFIG_SYS_RAMBOOT long size8, size9; #endif - long psize, lsize; + long psize; psize = 16 * 1024 * 1024; - lsize = 0; memctl->memc_psrt = CONFIG_SYS_PSRT; memctl->memc_mptpr = CONFIG_SYS_MPTPR;