From: Julia Lawall Date: Sat, 23 Aug 2014 11:20:27 +0000 (+0200) Subject: lustre: obdclass: use c99 initializers in structures X-Git-Tag: fixes-for-v3.18-merge-window~15^2~1168 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4873972b407742b1ad6f6cc5c53e0b5e5cb0cf2f;p=pandora-kernel.git lustre: obdclass: 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 Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed