From a09cc3fa3b6c6dfa391c2cd62d48e3f5536f6bec Mon Sep 17 00:00:00 2001 From: Enric Balletbo i Serra Date: Wed, 3 Aug 2011 19:20:27 -0700 Subject: [PATCH] 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 --- include/asm/arch-omap3/i2c.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) */ -- 2.39.5