i2c: brcmstb: 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>
This commit is contained in:
Wolfram Sang 2016-04-03 20:44:49 +02:00
parent 191d738d84
commit fa5ce47a99

View file

@ -446,9 +446,7 @@ static int brcmstb_i2c_do_addr(struct brcmstb_i2c_dev *dev,
} }
} else { } else {
addr = msg->addr << 1; addr = i2c_8bit_addr_from_msg(msg);
if (msg->flags & I2C_M_RD)
addr |= 1;
bsc_writel(dev, addr, chip_address); bsc_writel(dev, addr, chip_address);
} }