Commit 3322d579 authored by Bhanusree Pola's avatar Bhanusree Pola Committed by Greg Kroah-Hartman

Staging: rtl8723bs: Avoid typedefs for structure

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:

<smpl>
@r1@
identifier i;
type t;
@@
typedef struct i {
...
}t;

@r2@
type r1.t;
identifier v;
@@
t v;

@script:python match@
i << r1.i;
x;
@@
coccinelle.x = i;

@r4@
identifier match.x;
type r1.t;
@@
- typedef struct x
+ struct x
{ ... }
- t
;

@r5@
type r1.t;
identifier r2.v, match.x;
@@
- t v;
+ struct x v;
</smpl>

Change Structure name _ODM_Phy_Dbg_Info and _ODM_Mac_Status_Info_ to maintain Linux kernel Coding Style.
Replace occurences of ODM_PHY_DBG_INFO_T to odm_phy_dbg_info and ODM_MAC_INFO to odm_mac_status_info.
Signed-off-by: default avatarBhanusree Pola <bhanusreemahesh@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 36d657b0
...@@ -691,7 +691,7 @@ void ODM_CmnInfoHook(PDM_ODM_T pDM_Odm, ODM_CMNINFO_E CmnInfo, void *pValue) ...@@ -691,7 +691,7 @@ void ODM_CmnInfoHook(PDM_ODM_T pDM_Odm, ODM_CMNINFO_E CmnInfo, void *pValue)
/* break; */ /* break; */
/* case ODM_CMNINFO_MAC_STATUS: */ /* case ODM_CMNINFO_MAC_STATUS: */
/* pDM_Odm->pMacInfo = (ODM_MAC_INFO *)pValue; */ /* pDM_Odm->pMacInfo = (struct odm_mac_status_info *)pValue; */
/* break; */ /* break; */
/* To remove the compiler warning, must add an empty default statement to handle the other values. */ /* To remove the compiler warning, must add an empty default statement to handle the other values. */
default: default:
......
...@@ -261,7 +261,7 @@ struct odm_packet_info { ...@@ -261,7 +261,7 @@ struct odm_packet_info {
bool is_beacon; bool is_beacon;
}; };
typedef struct _ODM_Phy_Dbg_Info_ { struct odm_phy_dbg_info {
/* ODM Write, debug info */ /* ODM Write, debug info */
s8 RxSNRdB[4]; s8 RxSNRdB[4];
u32 NumQryPhyStatus; u32 NumQryPhyStatus;
...@@ -271,11 +271,11 @@ typedef struct _ODM_Phy_Dbg_Info_ { ...@@ -271,11 +271,11 @@ typedef struct _ODM_Phy_Dbg_Info_ {
/* Others */ /* Others */
s32 RxEVM[4]; s32 RxEVM[4];
} ODM_PHY_DBG_INFO_T; };
typedef struct _ODM_Mac_Status_Info_ { struct odm_mac_status_info {
u8 test; u8 test;
} ODM_MAC_INFO; };
typedef enum tag_Dynamic_ODM_Support_Ability_Type { typedef enum tag_Dynamic_ODM_Support_Ability_Type {
/* BB Team */ /* BB Team */
...@@ -1092,11 +1092,11 @@ typedef struct DM_Out_Source_Dynamic_Mechanism_Structure { ...@@ -1092,11 +1092,11 @@ typedef struct DM_Out_Source_Dynamic_Mechanism_Structure {
/* Define ........... */ /* Define ........... */
/* Latest packet phy info (ODM write) */ /* Latest packet phy info (ODM write) */
ODM_PHY_DBG_INFO_T PhyDbgInfo; struct odm_phy_dbg_info PhyDbgInfo;
/* PHY_INFO_88E PhyInfo; */ /* PHY_INFO_88E PhyInfo; */
/* Latest packet phy info (ODM write) */ /* Latest packet phy info (ODM write) */
ODM_MAC_INFO *pMacInfo; struct odm_mac_status_info *pMacInfo;
/* MAC_INFO_88E MacInfo; */ /* MAC_INFO_88E MacInfo; */
/* Different Team independt structure?? */ /* Different Team independt structure?? */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment