]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commit - drivers/ide/atiixp.c
Drivers: ide: Remove typedef atiixp_ide_timing
authorHimangi Saraogi <himangi774@gmail.com>
Thu, 14 Aug 2014 16:44:30 +0000 (22:14 +0530)
committerDavid S. Miller <davem@davemloft.net>
Wed, 15 Oct 2014 18:27:38 +0000 (14:27 -0400)
commit7546e52b5e3d46d0deae4a336252b6dfd52c6571
tree095ab5f0583801feeb0a06155122e2d685707da2
parent0429fbc0bdc297d64188483ba029a23773ae07b0
Drivers: ide: Remove typedef atiixp_ide_timing

The Linux kernel coding style guidelines suggest not using typedefs
for structure types. This patch gets rid of the typedef for
atiixp_ide_timing.

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: David S. Miller <davem@davemloft.net>
drivers/ide/atiixp.c