diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2016-09-13 17:41:26 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-13 15:13:16 +0200 |
commit | 1d191e1057aec4f9f635556d49f4f0ef90b704d4 (patch) | |
tree | ebe897f0f73870d626f273763470200dc99b073d /Kbuild | |
parent | 65f5c3ea622dfca230e96e5098603f1df9e0a902 (diff) | |
download | op-kernel-dev-1d191e1057aec4f9f635556d49f4f0ef90b704d4.zip op-kernel-dev-1d191e1057aec4f9f635556d49f4f0ef90b704d4.tar.gz |
Staging: wilc1000: Remove struct typedef
Remove typedef from structure tstrRSSI as using typedef for
structures is not preferred.
Found using coccinelle:
@r1@
type T;
@@
typedef struct { ... } T;
@script:python c1@
T2;
T << r1.T;
@@
if T[-2:] =="_t":
coccinelle.T2 = T[:-2];
print T
else:
coccinelle.T2=T;
@r2@
type r1.T;
identifier c1.T2;
@@
-typedef
struct
+ T2
{ ... }
-T
;
@r3@
type r1.T;
identifier c1.T2;
@@
- T
+ struct T2
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Kbuild')
0 files changed, 0 insertions, 0 deletions