From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steven Scholz Date: Thu, 07 Apr 2005 10:54:11 +0200 Subject: [U-Boot-Users] PATCH: fix warning in cpu/arm920t/at91rm9200/i2c.c Message-ID: <4254F533.9050201@imc-berlin.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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