Coccinelle: pm_runtime: reduce rule applicability
authorJulia Lawall <Julia.Lawall@lip6.fr>
Sun, 31 Jan 2016 16:26:57 +0000 (17:26 +0100)
committerMichal Marek <mmarek@suse.com>
Thu, 18 Feb 2016 21:08:09 +0000 (22:08 +0100)
Rule r is only used in org or report mode, so only execute it in those
cases.

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Michal Marek <mmarek@suse.com>
scripts/coccinelle/api/pm_runtime.cocci

index b7042d074078cbb2883f560df119b53fc4e39cae..89b98a2f7a6f46d74863701ed49f8f60455731ed 100644 (file)
@@ -78,7 +78,7 @@ ret = pm_runtime_api(...);
 //  For org and report mode
 //----------------------------------------------------------
 
-@r depends on runtime_bad_err_handle exists@
+@r depends on runtime_bad_err_handle && (org || report) exists@
 position p1, p2;
 identifier pm_runtime_api;
 expression ret;
This page took 0.055925 seconds and 5 git commands to generate.