diff options
author | Vaishali Thakkar <vaishali.thakkar@oracle.com> | 2016-11-23 14:16:46 +0530 |
---|---|---|
committer | Michal Marek <mmarek@suse.com> | 2016-12-11 12:08:26 +0100 |
commit | 35b303ae361611a6b418e385fee06fa08732b2e6 (patch) | |
tree | b8a9735d6b040f9cddf7ddd2b142193cab591e7f /scripts | |
parent | dca24c4544d96989f521b5aa49fd44ae0ae5a5b6 (diff) | |
download | linux-35b303ae361611a6b418e385fee06fa08732b2e6.tar.bz2 |
Coccinelle: misc: Improve the result given by context mode
To eliminate false positives given by the context mode, add
necessary arguments for the function request_threaded_irq.
Signed-off-by: Vaishali Thakkar <vaishali.thakkar@oracle.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/coccinelle/misc/irqf_oneshot.cocci | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/coccinelle/misc/irqf_oneshot.cocci b/scripts/coccinelle/misc/irqf_oneshot.cocci index cbe4ba8f293a..37ede13cd517 100644 --- a/scripts/coccinelle/misc/irqf_oneshot.cocci +++ b/scripts/coccinelle/misc/irqf_oneshot.cocci @@ -79,9 +79,10 @@ devm_request_threaded_irq@p(dev, irq, NULL, thread_fn, ) @depends on context@ +expression irq; position p != {r1.p,r2.p}; @@ -*request_threaded_irq@p(...) +*request_threaded_irq@p(irq, NULL, ...) @match depends on report || org@ expression irq; |