mfd: da9150-core: Convert to i2c_new_dummy_device
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Mon, 22 Jul 2019 17:26:12 +0000 (19:26 +0200)
committerLee Jones <lee.jones@linaro.org>
Mon, 12 Aug 2019 07:52:03 +0000 (08:52 +0100)
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: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/da9150-core.c

index 13033068721afe6fa7dddd8377aad8b0a522000d..7f0aa1e8db96f7e9f6c5905919fef72a333a9e96 100644 (file)
@@ -420,10 +420,10 @@ static int da9150_probe(struct i2c_client *client,
        qif_addr = da9150_reg_read(da9150, DA9150_CORE2WIRE_CTRL_A);
        qif_addr = (qif_addr & DA9150_CORE_BASE_ADDR_MASK) >> 1;
        qif_addr |= DA9150_QIF_I2C_ADDR_LSB;
-       da9150->core_qif = i2c_new_dummy(client->adapter, qif_addr);
-       if (!da9150->core_qif) {
+       da9150->core_qif = i2c_new_dummy_device(client->adapter, qif_addr);
+       if (IS_ERR(da9150->core_qif)) {
                dev_err(da9150->dev, "Failed to attach QIF client\n");
-               return -ENODEV;
+               return PTR_ERR(da9150->core_qif);
        }
 
        i2c_set_clientdata(da9150->core_qif, da9150);