regulator: pv88090: Fix irq leak

Use devm_request_threaded_irq to ensure the irq is freed when unload the
module.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Axel Lin 2015-12-10 18:11:58 +08:00 committed by Mark Brown
parent c90456e36d
commit ecee988ac8
1 changed files with 1 additions and 1 deletions

View File

@ -357,7 +357,7 @@ static int pv88090_i2c_probe(struct i2c_client *i2c,
return ret;
}
ret = request_threaded_irq(i2c->irq, NULL,
ret = devm_request_threaded_irq(&i2c->dev, i2c->irq, NULL,
pv88090_irq_handler,
IRQF_TRIGGER_LOW|IRQF_ONESHOT,
"pv88090", chip);