Explorar o código

i2c: core: use new 8 bit address helper function

Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sang %!s(int64=9) %!d(string=hai) anos
pai
achega
041edda875
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      drivers/i2c/i2c-core.c

+ 1 - 1
drivers/i2c/i2c-core.c

@@ -2646,7 +2646,7 @@ static u8 i2c_smbus_pec(u8 crc, u8 *p, size_t count)
 static u8 i2c_smbus_msg_pec(u8 pec, struct i2c_msg *msg)
 static u8 i2c_smbus_msg_pec(u8 pec, struct i2c_msg *msg)
 {
 {
 	/* The address will be sent first */
 	/* The address will be sent first */
-	u8 addr = (msg->addr << 1) | !!(msg->flags & I2C_M_RD);
+	u8 addr = i2c_8bit_addr_from_msg(msg);
 	pec = i2c_smbus_pec(pec, &addr, 1);
 	pec = i2c_smbus_pec(pec, &addr, 1);
 
 
 	/* The data buffer follows */
 	/* The data buffer follows */