pcmcia: Remove typedef tuple_flags
authorHimangi Saraogi <himangi774@gmail.com>
Wed, 6 Aug 2014 12:29:48 +0000 (17:59 +0530)
committerDominik Brodowski <linux@dominikbrodowski.net>
Sat, 30 May 2015 13:50:21 +0000 (15:50 +0200)
commit820dc8464e374e3ce1ecc72b0aaab3a935de34fa
treea9256a34733529cb2eeeee0e522c625d2e828a75
parent0f06abd38ef26007faf7602fd8e0454aa27d9dd8
pcmcia: Remove typedef tuple_flags

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