lp8727_charger: Use IRQF_ONESHOT
Generated by: scripts/coccinelle/misc/irqf_oneshot.cocci ERROR: Threaded IRQ with no primary handler requested without IRQF_ONESHOT Make sure threaded IRQs without a primary handler are always request with IRQF_ONESHOT Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> Acked-by: Milo(Woogyom) Kim <milo.kim@ti.com> Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
This commit is contained in:
parent
f1ade35253
commit
7c577c0d1e
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ static int lp8727_intr_config(struct lp8727_chg *pchg)
|
||||||
return request_threaded_irq(pchg->client->irq,
|
return request_threaded_irq(pchg->client->irq,
|
||||||
NULL,
|
NULL,
|
||||||
lp8727_isr_func,
|
lp8727_isr_func,
|
||||||
IRQF_TRIGGER_FALLING,
|
IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
|
||||||
"lp8727_irq",
|
"lp8727_irq",
|
||||||
pchg);
|
pchg);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue