
7 Apr
2005
7 Apr
'05
10:54 a.m.
Hi,
Please consider this trivial patch to fix a compiler warning that appers when not defining CFG_I2C_EEPROM_ADDR_OVERFLOW:
diff -u -r1.1 i2c.c --- u-boot/cpu/arm920t/at91rm9200/i2c.c 6 Apr 2005 13:52:34 -0000 1.1 +++ u-boot/cpu/arm920t/at91rm9200/i2c.c 7 Apr 2005 08:52:34 -0000 @@ -140,10 +140,10 @@ i2c_write(unsigned char chip, unsigned int addr, int alen, unsigned char *buffer, int len) { +#ifdef CFG_I2C_EEPROM_ADDR_OVERFLOW int i; unsigned char *buf;
-#ifdef CFG_I2C_EEPROM_ADDR_OVERFLOW /* we only allow one address byte */ if (alen > 1) return 1;
--
Steven