Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755789AbcJPRTF (ORCPT ); Sun, 16 Oct 2016 13:19:05 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:29080 "EHLO userp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757054AbcJPRSo (ORCPT ); Sun, 16 Oct 2016 13:18:44 -0400 From: Vaishali Thakkar To: mmarek@suse.com Cc: Julia.Lawall@lip6.fr, Gilles.Muller@lip6.fr, nicolas.palix@imag.fr, cocci@systeme.lip6.fr, linux-kernel@vger.kernel.org, lars@metafoo.de, Vaishali Thakkar Subject: [PATCH v2 2/3] Coccinelle: misc: Improve the result given by context mode Date: Sun, 16 Oct 2016 22:40:00 +0530 Message-Id: X-Mailer: git-send-email 2.1.4 In-Reply-To: References: X-Source-IP: userv0022.oracle.com [156.151.31.74] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 775 Lines: 23 To eliminate false positives given by the context mode, add necessary arguments for the function request_threaded_irq. Signed-off-by: Vaishali Thakkar --- scripts/coccinelle/misc/irqf_oneshot.cocci | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/coccinelle/misc/irqf_oneshot.cocci b/scripts/coccinelle/misc/irqf_oneshot.cocci index b538d08..03b748d 100644 --- a/scripts/coccinelle/misc/irqf_oneshot.cocci +++ b/scripts/coccinelle/misc/irqf_oneshot.cocci @@ -89,7 +89,7 @@ devm_request_threaded_irq@p(dev, irq, NULL, thread_fn, @depends on context@ position p != {r1.p,r2.p}; @@ -*request_threaded_irq@p(...) +*request_threaded_irq@p(irq, NULL, ...) @match depends on report || org@ expression irq; -- 2.1.4