mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
0f2a84f41a
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> |
||
---|---|---|
.. | ||
befs_fs_types.h | ||
befs.h | ||
btree.c | ||
btree.h | ||
ChangeLog | ||
datastream.c | ||
datastream.h | ||
debug.c | ||
endian.h | ||
inode.c | ||
inode.h | ||
io.c | ||
io.h | ||
Kconfig | ||
linuxvfs.c | ||
Makefile | ||
super.c | ||
super.h | ||
TODO |