[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1553321671-27749-1-git-send-email-wen.yang99@zte.com.cn>
Date: Sat, 23 Mar 2019 14:14:31 +0800
From: Wen Yang <wen.yang99@....com.cn>
To: yamada.masahiro@...ionext.com
Cc: linux-kernel@...r.kernel.org, wang.yi59@....com.cn,
Wen Yang <wen.yang99@....com.cn>,
Julia Lawall <Julia.Lawall@...6.fr>,
Gilles Muller <Gilles.Muller@...6.fr>,
Nicolas Palix <nicolas.palix@...g.fr>,
Michal Marek <michal.lkml@...kovi.net>, cocci@...teme.lip6.fr
Subject: [PATCH] coccinelle: put_device: reduce false positives
Don't complain about a return when this function returns "&pdev->dev".
Reported-by: Julia Lawall <Julia.Lawall@...6.fr>
Signed-off-by: Wen Yang <wen.yang99@....com.cn>
Cc: Julia Lawall <Julia.Lawall@...6.fr>
Cc: Gilles Muller <Gilles.Muller@...6.fr>
Cc: Nicolas Palix <nicolas.palix@...g.fr>
Cc: Michal Marek <michal.lkml@...kovi.net>
Cc: Masahiro Yamada <yamada.masahiro@...ionext.com>
CC: cocci@...teme.lip6.fr
Cc: linux-kernel@...r.kernel.org
---
scripts/coccinelle/free/put_device.cocci | 1 +
1 file changed, 1 insertion(+)
diff --git a/scripts/coccinelle/free/put_device.cocci b/scripts/coccinelle/free/put_device.cocci
index 7395697..c9f071b 100644
--- a/scripts/coccinelle/free/put_device.cocci
+++ b/scripts/coccinelle/free/put_device.cocci
@@ -32,6 +32,7 @@ if (id == NULL || ...) { ... return ...; }
( id
| (T2)dev_get_drvdata(&id->dev)
| (T3)platform_get_drvdata(id)
+| &id->dev
);
| return@p2 ...;
)
--
2.9.5
Powered by blists - more mailing lists