From: Enric Balletbo i Serra Date: Thu, 4 Aug 2011 02:20:27 +0000 (-0700) Subject: Fix warning in include/asm/arch/i2c.h X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a09cc3fa3b6c6dfa391c2cd62d48e3f5536f6bec;p=pandora-x-loader.git Fix warning in include/asm/arch/i2c.h This patch fixes following warnings: include/asm/arch/i2c.h:89:65: warning: "/*" within comment include/asm/arch/i2c.h:90:8: warning: "/*" within comment Signed-off-by: Enric Balletbo i Serra Signed-off-by: Anand Gadiyar --- diff --git a/include/asm/arch-omap3/i2c.h b/include/asm/arch-omap3/i2c.h index 5fb0979..28ae5ca 100644 --- a/include/asm/arch-omap3/i2c.h +++ b/include/asm/arch-omap3/i2c.h @@ -86,7 +86,7 @@ #define I2C_CON_BE (1 << 14) /* Big endian mode */ #define I2C_CON_STB (1 << 11) /* Start byte mode (master mode only) */ #define I2C_CON_MST (1 << 10) /* Master/slave mode */ -#define I2C_CON_TRX (1 << 9) /* Transmitter/receiver mode /* +#define I2C_CON_TRX (1 << 9) /* Transmitter/receiver mode */ /* (master mode only) */ #define I2C_CON_XA (1 << 8) /* Expand address */ #define I2C_CON_STP (1 << 1) /* Stop condition (master mode only) */