Commit 998a8e7a authored by Kim, Milo's avatar Kim, Milo Committed by Anton Vorontsov

lp8727_charger: Add supported i2c functionality check routine

lp8727 i2c r/w functions are based on SMBUS I2C BLOCK. So the driver needs to
check whether i2c bus supports this functionality or not.
Signed-off-by: default avatarWoogyom Kim <milo.kim@ti.com>
Signed-off-by: default avatarAnton Vorontsov <cbouatmailru@gmail.com>
parent 2165c8a4
......@@ -425,6 +425,9 @@ static int lp8727_probe(struct i2c_client *cl, const struct i2c_device_id *id)
struct lp8727_chg *pchg;
int ret;
if (!i2c_check_functionality(cl->adapter, I2C_FUNC_SMBUS_I2C_BLOCK))
return -EIO;
pchg = kzalloc(sizeof(*pchg), GFP_KERNEL);
if (!pchg)
return -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment