mfd: max8998: 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: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
Wolfram Sang
2019-07-22 19:26:19 +02:00
committed by Lee Jones
parent 4e32bff681
commit 7a99c8f331

View File

@@ -195,10 +195,10 @@ static int max8998_i2c_probe(struct i2c_client *i2c,
} }
mutex_init(&max8998->iolock); mutex_init(&max8998->iolock);
max8998->rtc = i2c_new_dummy(i2c->adapter, RTC_I2C_ADDR); max8998->rtc = i2c_new_dummy_device(i2c->adapter, RTC_I2C_ADDR);
if (!max8998->rtc) { if (IS_ERR(max8998->rtc)) {
dev_err(&i2c->dev, "Failed to allocate I2C device for RTC\n"); dev_err(&i2c->dev, "Failed to allocate I2C device for RTC\n");
return -ENODEV; return PTR_ERR(max8998->rtc);
} }
i2c_set_clientdata(max8998->rtc, max8998); i2c_set_clientdata(max8998->rtc, max8998);