Re: [PATCH v2] Staging: rtl8723bs: Avoid typedefs for structure

2019-04-19 Thread Greg Kroah-Hartman
On Fri, Apr 19, 2019 at 04:42:56PM +0530, Bhanusree Pola wrote: > Avoid typedefs for structure types to maintain kernel coding style. > Remove typedefs for _ODM_Phy_Dbg_Info and _ODM_Mac_Status_Info_. > This part is done by the following semantic patch: > > > @r1@ > identifier i; > type t; > @@

[PATCH v2] Staging: rtl8723bs: Avoid typedefs for structure

2019-04-19 Thread Bhanusree Pola
Avoid typedefs for structure types to maintain kernel coding style. Remove typedefs for _ODM_Phy_Dbg_Info and _ODM_Mac_Status_Info_. This part is done by the following semantic patch: @r1@ identifier i; type t; @@ typedef struct i { ... }t; @r2@ type r1.t; identifier v; @@ t v; @script:python