[U-Boot-Users] PATCH: fix warning in cpu/arm920t/at91rm9200/i2c.c
Steven Scholz
steven.scholz at imc-berlin.de
Thu Apr 7 10:54:11 CEST 2005
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
More information about the U-Boot
mailing list