From: Wolfgang Denk Date: Sat, 5 Nov 2011 05:13:15 +0000 (+0000) Subject: board/sacsng/sacsng.c: Fix GCC 4.6 build warning X-Git-Tag: v2011.12-rc1~235 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f58902d0aa2147dce356239f069b2c063e8932e0;p=u-boot board/sacsng/sacsng.c: Fix GCC 4.6 build warning Fix: sacsng.c: In function 'initdram': sacsng.c:180:9: warning: variable 'spd_size' set but not used [-Wunused-but-set-variable] Signed-off-by: Wolfgang Denk Cc: Jerry Van Baren --- diff --git a/board/sacsng/sacsng.c b/board/sacsng/sacsng.c index 09f59a0f0d..536d7de0e0 100644 --- a/board/sacsng/sacsng.c +++ b/board/sacsng/sacsng.c @@ -177,7 +177,6 @@ phys_size_t initdram(int board_type) uint sdam; uint bsma; uint sda10; - u_char spd_size; u_char data; u_char cksum; int j; @@ -192,7 +191,6 @@ phys_size_t initdram(int board_type) * Read the SDRAM SPD EEPROM via I2C. */ i2c_read(SDRAM_SPD_ADDR, 0, 1, &data, 1); - spd_size = data; cksum = data; for (j = 1; j < 64; j++) { /* read only the checksummed bytes */ /* note: the I2C address autoincrements when alen == 0 */