diff options
| author | Németh Márton <[email protected]> | 2010-01-10 00:18:41 +0100 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2010-03-03 16:42:42 -0800 |
| commit | b76a32638d9d7d6b421fccce02e667007509bd7b (patch) | |
| tree | ec61c800e5dc703748aa42393a140c1655d9319b /tools/perf/scripts/python | |
| parent | a457732b836b970c82c7ba35b4cfc938c9c543f9 (diff) | |
staging: make i2c device id constant
The id_table field of the struct i2c_driver is constant in <linux/i2c.h>
so it is worth to make the initialization data also constant.
The semantic match that finds this kind of pattern is as follows:
(http://coccinelle.lip6.fr/)
// <smpl>
@r@
disable decl_init,const_decl_init;
identifier I1, I2, x;
@@
struct I1 {
...
const struct I2 *x;
...
};
@s@
identifier r.I1, y;
identifier r.x, E;
@@
struct I1 y = {
.x = E,
};
@c@
identifier r.I2;
identifier s.E;
@@
const struct I2 E[] = ... ;
@depends on !c@
identifier r.I2;
identifier s.E;
@@
+ const
struct I2 E[] = ...;
// </smpl>
Signed-off-by: Németh Márton <[email protected]>
Cc: Julia Lawall <[email protected]>
Cc: [email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions