]> asedeno.scripts.mit.edu Git - linux.git/commit
Staging: wilc1000: Remove and rename struct typedefs from .c files
authorBhumika Goyal <bhumirks@gmail.com>
Sat, 20 Feb 2016 21:42:11 +0000 (03:12 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 20 Feb 2016 22:43:48 +0000 (14:43 -0800)
commit6a707a9eb9de373ba3ed2f85d44dce8bda229afc
tree293f1013a8829e4f3a7e45baf58ccaa04204af24
parent5bc32160c543de5cab9bc38cc048e1334e881b98
Staging: wilc1000: Remove and rename struct typedefs from .c files

Using typedef for a structure type is not suggested in Linux kernel coding
style guidelines. So remove typedefs from structures wilc_sdio_t,
wilc_spi_t and wilc_mac_cfg_t.
Also remove '_t' suffix from the struct names by hand.

The following semantic patch detects cases:

@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: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_sdio.c
drivers/staging/wilc1000/wilc_spi.c
drivers/staging/wilc1000/wilc_wlan_cfg.c