git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f06abd
)
pcmcia: Remove typedef tuple_flags
author
Himangi Saraogi
<himangi774@gmail.com>
Wed, 6 Aug 2014 12:29:48 +0000
(17:59 +0530)
committer
Dominik Brodowski
<linux@dominikbrodowski.net>
Sat, 30 May 2015 13:50:21 +0000
(15:50 +0200)
The Linux kernel coding style guidelines suggest not using typedefs
for structure types. This patch gets rid of the typedef for tuple_flags.
The following Coccinelle semantic patch makes the transformation.
@tn@
identifier i;
type td;
@@
-typedef
struct i { ... }
-td
;
@@
type tn.td;
identifier tn.i;
@@
-td
+ struct i
Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
drivers/pcmcia/cistpl.c
patch
|
blob
|
history
diff --cc
drivers/pcmcia/cistpl.c
Simple merge