regulator: lp8755: Convert to devm_request_threaded_irq
Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
b787f68c36
commit
840499aa00
1 changed files with 8 additions and 15 deletions
|
@ -419,20 +419,16 @@ static int lp8755_int_config(struct lp8755_chip *pchip)
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = lp8755_read(pchip, 0x0F, ®val);
|
ret = lp8755_read(pchip, 0x0F, ®val);
|
||||||
if (ret < 0)
|
if (ret < 0) {
|
||||||
goto err_i2c;
|
dev_err(pchip->dev, "i2c acceess error %s\n", __func__);
|
||||||
pchip->irqmask = regval;
|
|
||||||
ret = request_threaded_irq(pchip->irq, NULL, lp8755_irq_handler,
|
|
||||||
IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
|
|
||||||
"lp8755-irq", pchip);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
return ret;
|
pchip->irqmask = regval;
|
||||||
|
return devm_request_threaded_irq(pchip->dev, pchip->irq, NULL,
|
||||||
err_i2c:
|
lp8755_irq_handler,
|
||||||
dev_err(pchip->dev, "i2c acceess error %s\n", __func__);
|
IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
|
||||||
return ret;
|
"lp8755-irq", pchip);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct regmap_config lp8755_regmap = {
|
static const struct regmap_config lp8755_regmap = {
|
||||||
|
@ -514,9 +510,6 @@ static int lp8755_remove(struct i2c_client *client)
|
||||||
for (icnt = 0; icnt < LP8755_BUCK_MAX; icnt++)
|
for (icnt = 0; icnt < LP8755_BUCK_MAX; icnt++)
|
||||||
lp8755_write(pchip, icnt, 0x00);
|
lp8755_write(pchip, icnt, 0x00);
|
||||||
|
|
||||||
if (pchip->irq != 0)
|
|
||||||
free_irq(pchip->irq, pchip);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue