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 /drivers/pwm/Kconfig | |
parent | pwm: lpss: Fix build failure on PowerPC (diff) | |
download | linux-b2b7adeb21745266326d453b95e5d0b1b9cb1d4e.tar.xz linux-b2b7adeb21745266326d453b95e5d0b1b9cb1d4e.zip |
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 'drivers/pwm/Kconfig')
0 files changed, 0 insertions, 0 deletions