projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c90456e
)
regulator: pv88090: Fix irq leak
author
Axel Lin
<axel.lin@ingics.com>
Thu, 10 Dec 2015 10:11:58 +0000
(18:11 +0800)
committer
Mark Brown
<broonie@kernel.org>
Sat, 12 Dec 2015 22:34:08 +0000
(22:34 +0000)
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>
drivers/regulator/pv88090-regulator.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/regulator/pv88090-regulator.c
b/drivers/regulator/pv88090-regulator.c
index 3ec5f2bdfc51d4416ec5b31524b3214d4f36b245..2513fef37409571876f3160d37c685c7add306b0 100644
(file)
--- a/
drivers/regulator/pv88090-regulator.c
+++ b/
drivers/regulator/pv88090-regulator.c
@@
-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);