Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mfd: da9052-i2c: Remove duplicate test for I2C_FUNC_SMBUS_BYTE_DATA functionality

Since commit b42261078a91 ("regmap: i2c: fallback to SMBus if the adapter
does not support standard I2C"), regmap-i2c will check the
I2C_FUNC_SMBUS_[BYTE|WORD]_DATA functionality based on the regmap_config
setting if the adapter does not support standard I2C.

So remove the I2C_FUNC_SMBUS_BYTE_DATA functionality check in the driver code.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>

authored by

Axel Lin and committed by
Lee Jones
378515fc 42a71ef9

-7
-7
drivers/mfd/da9052-i2c.c
··· 140 140 if (!da9052) 141 141 return -ENOMEM; 142 142 143 - if (!i2c_check_functionality(client->adapter, 144 - I2C_FUNC_SMBUS_BYTE_DATA)) { 145 - dev_info(&client->dev, "Error in %s:i2c_check_functionality\n", 146 - __func__); 147 - return -ENODEV; 148 - } 149 - 150 143 da9052->dev = &client->dev; 151 144 da9052->chip_irq = client->irq; 152 145 da9052->fix_io = da9052_i2c_fix;