diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2014-08-23 13:20:25 +0200 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2014-08-25 11:45:34 +0200 |
commit | b2b7adeb21745266326d453b95e5d0b1b9cb1d4e (patch) | |
tree | 666582cea47c0f597e74ea7f2abc79bc3fd14c90 /CREDITS | |
parent | e0c86a3b63e948e51a47d17382c7cd8711d19750 (diff) | |
download | op-kernel-dev-b2b7adeb21745266326d453b95e5d0b1b9cb1d4e.zip op-kernel-dev-b2b7adeb21745266326d453b95e5d0b1b9cb1d4e.tar.gz |
pwm: lpss: use c99 initializers in structures
Use c99 initializers for structures.
A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@decl@
identifier i1,fld;
type T;
field list[n] fs;
@@
struct i1 {
fs
T fld;
...};
@bad@
identifier decl.i1,i2;
expression e;
initializer list[decl.n] is;
@@
struct i1 i2 = { is,
+ .fld = e
- e
,...};
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
[thierry.reding: rebased and applied same fix for Braswell]
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'CREDITS')
0 files changed, 0 insertions, 0 deletions