alistair23-linux/fs/befs
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
..
befs.h BEFS: logging cleanup 2014-04-03 16:21:25 -07:00
befs_fs_types.h
btree.c fs/befs/btree.c: remove typedef befs_btree_node 2014-10-14 02:18:20 +02:00
btree.h
ChangeLog
datastream.c fs/befs: kernel-doc fixes 2014-06-06 16:08:09 -07:00
datastream.h
debug.c BEFS: logging cleanup 2014-04-03 16:21:25 -07:00
endian.h
inode.c BEFS: logging cleanup 2014-04-03 16:21:25 -07:00
inode.h
io.c BEFS: logging cleanup 2014-04-03 16:21:25 -07:00
io.h
Kconfig
linuxvfs.c fs/befs/linuxvfs.c: check superblock before dump operation 2014-08-08 15:57:20 -07:00
Makefile BEFS: logging cleanup 2014-04-03 16:21:25 -07:00
super.c
super.h
TODO