From: Julia Lawall Date: Sat, 23 Aug 2014 11:20:25 +0000 (+0200) Subject: pwm: lpss: use c99 initializers in structures X-Git-Tag: fixes-against-v3.18-rc2~24^2~9 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2b7adeb21745266326d453b95e5d0b1b9cb1d4e;p=pandora-kernel.git 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/) // @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 ,...}; // Signed-off-by: Julia Lawall [thierry.reding: rebased and applied same fix for Braswell] Signed-off-by: Thierry Reding --- Reading git-diff-tree failed