]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - drivers/extcon/extcon-max77843.c
nvmet-loop: fix possible leakage during error flow
[linux.git] / drivers / extcon / extcon-max77843.c
index a343a6ef35065dc6cce978ac51bb000be464c443..e6b50ca8300869c60e43b8bd35fc5f8cdb69eabf 100644 (file)
@@ -774,12 +774,12 @@ static int max77843_init_muic_regmap(struct max77693_dev *max77843)
 {
        int ret;
 
-       max77843->i2c_muic = i2c_new_dummy(max77843->i2c->adapter,
+       max77843->i2c_muic = i2c_new_dummy_device(max77843->i2c->adapter,
                        I2C_ADDR_MUIC);
-       if (!max77843->i2c_muic) {
+       if (IS_ERR(max77843->i2c_muic)) {
                dev_err(&max77843->i2c->dev,
                                "Cannot allocate I2C device for MUIC\n");
-               return -ENOMEM;
+               return PTR_ERR(max77843->i2c_muic);
        }
 
        i2c_set_clientdata(max77843->i2c_muic, max77843);