mn10300: io: implement dummy relaxed accessor macros for writes
[linux/fpc-iii.git] / scripts / coccinelle / misc / of_table.cocci
blob3c934046a06042afb3982b9e001280f36bb2340e
1 /// Make sure of_device_id tables are NULL terminated
2 //
3 // Keywords: of_table
4 // Confidence: Medium
5 // Options: --include-headers
7 virtual patch
8 virtual context
9 virtual org
10 virtual report
12 @depends on context@
13 identifier var, arr;
14 expression E;
16 struct of_device_id arr[] = {
17         ...,
18         {
19         .var = E,
20 *       }
23 @depends on patch@
24 identifier var, arr;
25 expression E;
27 struct of_device_id arr[] = {
28         ...,
29         {
30         .var = E,
31 -       }
32 +       },
33 +       { }
36 @r depends on org || report@
37 position p1;
38 identifier var, arr;
39 expression E;
41 struct of_device_id arr[] = {
42         ...,
43         {
44         .var = E,
45         }
46         @p1
49 @script:python depends on org@
50 p1 << r.p1;
51 arr << r.arr;
54 cocci.print_main(arr,p1)
56 @script:python depends on report@
57 p1 << r.p1;
58 arr << r.arr;
61 msg = "%s is not NULL terminated at line %s" % (arr, p1[0].line)
62 coccilib.report.print_report(p1[0],msg)