aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/coccinelle/api/kobj_to_dev.cocci
blob: cd5d31c6fe76fa603e60a4a31763b98d7ad1c01e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// SPDX-License-Identifier: GPL-2.0-only
///
/// Use kobj_to_dev() instead of container_of()
///
// Confidence: High
// Copyright: (C) 2020 Denis Efremov ISPRAS
// Options: --no-includes --include-headers
//
// Keywords: kobj_to_dev, container_of
//

virtual context
virtual report
virtual org
virtual patch


@r depends on !patch@
expression ptr;
symbol kobj;
position p;
@@

* container_of(ptr, struct device, kobj)@p


@depends on patch@
expression ptr;
@@

- container_of(ptr, struct device, kobj)
+ kobj_to_dev(ptr)


@script:python depends on report@
p << r.p;
@@

coccilib.report.print_report(p[0], "WARNING opportunity for kobj_to_dev()")

@script:python depends on org@
p << r.p;
@@

coccilib.org.print_todo(p[0], "WARNING opportunity for kobj_to_dev()")