Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ecee988a authored by Axel Lin's avatar Axel Lin Committed by Mark Brown
Browse files

regulator: pv88090: Fix irq leak



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

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent c90456e3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);