Skip to content

Commit

Permalink
Coccinelle: misc: Improve the result given by context mode
Browse files Browse the repository at this point in the history
To eliminate false positives given by the context mode, add
necessary arguments for the function request_threaded_irq.

Signed-off-by: Vaishali Thakkar <[email protected]>
Acked-by: Julia Lawall <[email protected]>
Signed-off-by: Michal Marek <[email protected]>
  • Loading branch information
Vaishali Thakkar authored and Michal Marek committed Dec 11, 2016
1 parent dca24c4 commit 35b303a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/coccinelle/misc/irqf_oneshot.cocci
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 35b303a

Please sign in to comment.