sound/oss/pss: Remove typedefs pss_mixerdata and pss_confdata
authorHimangi Saraogi <himangi774@gmail.com>
Tue, 5 Aug 2014 13:26:47 +0000 (18:56 +0530)
committerTakashi Iwai <tiwai@suse.de>
Tue, 5 Aug 2014 18:08:00 +0000 (20:08 +0200)
commit81cb6b6be54d160ac8feb61f1510f33a3cece1d3
treed05e94452b9e4ee84e18c9ccae98f66cdcd45259
parent8b0276d281c9c9e62669736703c87385436a1265
sound/oss/pss: Remove typedefs pss_mixerdata and pss_confdata

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

The following Coccinelle semantic patch is used to make the change.

@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: Takashi Iwai <tiwai@suse.de>
sound/oss/pss.c