Commit a6d9cfcb authored by Wolfram Sang's avatar Wolfram Sang Committed by Chanwoo Choi

extcon: extcon-max77843: convert to i2c_new_dummy_device

Move from i2c_new_dummy() to i2c_new_dummy_device(), so we now get an
ERRPTR which we use in error handling.
Signed-off-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
parent a104dbc5
...@@ -774,12 +774,12 @@ static int max77843_init_muic_regmap(struct max77693_dev *max77843) ...@@ -774,12 +774,12 @@ static int max77843_init_muic_regmap(struct max77693_dev *max77843)
{ {
int ret; int ret;
max77843->i2c_muic = i2c_new_dummy(max77843->i2c->adapter, max77843->i2c_muic = i2c_new_dummy_device(max77843->i2c->adapter,
I2C_ADDR_MUIC); I2C_ADDR_MUIC);
if (!max77843->i2c_muic) { if (IS_ERR(max77843->i2c_muic)) {
dev_err(&max77843->i2c->dev, dev_err(&max77843->i2c->dev,
"Cannot allocate I2C device for MUIC\n"); "Cannot allocate I2C device for MUIC\n");
return -ENOMEM; return PTR_ERR(max77843->i2c_muic);
} }
i2c_set_clientdata(max77843->i2c_muic, max77843); i2c_set_clientdata(max77843->i2c_muic, max77843);
......
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