Himangi Saraogi
0f2a84f41a
fs/befs/btree.c: remove typedef befs_btree_node
The Linux kernel coding style guidelines suggest not using typedefs for
structure types. This patch gets rid of the typedef for befs_btree_node.
The following Coccinelle semantic patch detects the case.
@tn1@
type td;
@@
typedef struct { ... } td;
@script:python tf@
td << tn1.td;
tdres;
@@
coccinelle.tdres = td;
@@
type tn1.td;
identifier tf.tdres;
@@
-typedef
struct
+ tdres
{ ... }
-td
;
@@
type tn1.td;
identifier tf.tdres;
@@
-td
+ struct tdres
Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2014-10-14 02:18:20 +02:00
..
2011-03-31 11:26:23 -03:00
2014-04-03 16:21:25 -07:00
2014-10-14 02:18:20 +02:00
2005-04-16 15:20:36 -07:00
2011-03-31 11:26:23 -03:00
2014-06-06 16:08:09 -07:00
2005-04-16 15:20:36 -07:00
2014-04-03 16:21:25 -07:00
2011-01-13 08:03:15 -08:00
2014-04-03 16:21:25 -07:00
2005-04-16 15:20:36 -07:00
2014-04-03 16:21:25 -07:00
2005-04-16 15:20:36 -07:00
2013-01-21 14:39:04 -08:00
2014-08-08 15:57:20 -07:00
2014-04-03 16:21:25 -07:00
2009-04-08 10:21:43 -07:00
2005-04-16 15:20:36 -07:00
2005-04-16 15:20:36 -07:00