diff options
author | Vaishali Thakkar <vaishali.thakkar@oracle.com> | 2016-11-23 03:46:46 -0500 |
---|---|---|
committer | Michal Marek <mmarek@suse.com> | 2016-12-11 06:08:26 -0500 |
commit | 35b303ae361611a6b418e385fee06fa08732b2e6 (patch) | |
tree | b8a9735d6b040f9cddf7ddd2b142193cab591e7f | |
parent | dca24c4544d96989f521b5aa49fd44ae0ae5a5b6 (diff) |
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>
-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, | |||
79 | ) | 79 | ) |
80 | 80 | ||
81 | @depends on context@ | 81 | @depends on context@ |
82 | expression irq; | ||
82 | position p != {r1.p,r2.p}; | 83 | position p != {r1.p,r2.p}; |
83 | @@ | 84 | @@ |
84 | *request_threaded_irq@p(...) | 85 | *request_threaded_irq@p(irq, NULL, ...) |
85 | 86 | ||
86 | @match depends on report || org@ | 87 | @match depends on report || org@ |
87 | expression irq; | 88 | expression irq; |