Commit 7265f5b7 authored by Wen Yang's avatar Wen Yang Committed by Masahiro Yamada
Browse files

coccinelle: put_device: reduce false positives



Don't complain about a return when this function returns "&pdev->dev".

Fixes: da9cfb87 ("coccinelle: semantic code search for missing put_device()")
Reported-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: default avatarWen Yang <wen.yang99@zte.com.cn>
Acked-by: default avatarJulia Lawall <julia.lawall@lip6.fr>
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 688931a5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ if (id == NULL || ...) { ... return ...; }
(    id
|    (T2)dev_get_drvdata(&id->dev)
|    (T3)platform_get_drvdata(id)
|    &id->dev
);
| return@p2 ...;
)