|
@@ -66,6 +66,9 @@ static int intel_soc_pmic_i2c_probe(struct i2c_client *i2c,
|
|
dev_set_drvdata(dev, pmic);
|
|
dev_set_drvdata(dev, pmic);
|
|
|
|
|
|
pmic->regmap = devm_regmap_init_i2c(i2c, config->regmap_config);
|
|
pmic->regmap = devm_regmap_init_i2c(i2c, config->regmap_config);
|
|
|
|
+ if (IS_ERR(pmic->regmap))
|
|
|
|
+ return PTR_ERR(pmic->regmap);
|
|
|
|
+
|
|
pmic->irq = i2c->irq;
|
|
pmic->irq = i2c->irq;
|
|
|
|
|
|
ret = regmap_add_irq_chip(pmic->regmap, pmic->irq,
|
|
ret = regmap_add_irq_chip(pmic->regmap, pmic->irq,
|