summaryrefslogtreecommitdiffstats
path: root/drivers/mfd/max8907.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mfd/max8907.c')
-rw-r--r--drivers/mfd/max8907.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mfd/max8907.c b/drivers/mfd/max8907.c
index cc01f706cb32..d44baafd9d14 100644
--- a/drivers/mfd/max8907.c
+++ b/drivers/mfd/max8907.c
@@ -214,9 +214,9 @@ static int max8907_i2c_probe(struct i2c_client *i2c,
214 goto err_regmap_gen; 214 goto err_regmap_gen;
215 } 215 }
216 216
217 max8907->i2c_rtc = i2c_new_dummy(i2c->adapter, MAX8907_RTC_I2C_ADDR); 217 max8907->i2c_rtc = i2c_new_dummy_device(i2c->adapter, MAX8907_RTC_I2C_ADDR);
218 if (!max8907->i2c_rtc) { 218 if (IS_ERR(max8907->i2c_rtc)) {
219 ret = -ENOMEM; 219 ret = PTR_ERR(max8907->i2c_rtc);
220 goto err_dummy_rtc; 220 goto err_dummy_rtc;
221 } 221 }
222 i2c_set_clientdata(max8907->i2c_rtc, max8907); 222 i2c_set_clientdata(max8907->i2c_rtc, max8907);