Commit 005fb2de authored by Madhumitha Prabakaran's avatar Madhumitha Prabakaran Committed by Greg Kroah-Hartman

Staging: rtl8723bs: Remove typedef in struct dynamic_primary_CCA

Remove typedef in struct dynamic_primary_CCA, as a struct that has
elements that can reasonably be directly accessed should never be a
typedef.
Signed-off-by: default avatarMadhumitha Prabakaran <madhumithabiw@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fa8e35c7
...@@ -82,15 +82,15 @@ ...@@ -82,15 +82,15 @@
/* Remove DIG by yuchen */ /* Remove DIG by yuchen */
typedef struct _Dynamic_Primary_CCA { struct dynamic_primary_CCA {
u8 PriCCA_flag; u8 PriCCA_flag;
u8 intf_flag; u8 intf_flag;
u8 intf_type; u8 intf_type;
u8 DupRTS_flag; u8 DupRTS_flag;
u8 Monitor_flag; u8 Monitor_flag;
u8 CH_offset; u8 CH_offset;
u8 MF_state; u8 MF_state;
} Pri_CCA_T, *pPri_CCA_T; };
typedef struct _Rate_Adaptive_Table_ { typedef struct _Rate_Adaptive_Table_ {
u8 firstconnect; u8 firstconnect;
...@@ -1112,7 +1112,7 @@ typedef struct DM_Out_Source_Dynamic_Mechanism_Structure { ...@@ -1112,7 +1112,7 @@ typedef struct DM_Out_Source_Dynamic_Mechanism_Structure {
FAT_T DM_FatTable; FAT_T DM_FatTable;
DIG_T DM_DigTable; DIG_T DM_DigTable;
PS_T DM_PSTable; PS_T DM_PSTable;
Pri_CCA_T DM_PriCCA; struct dynamic_primary_CCA DM_PriCCA;
RXHP_T DM_RXHP_Table; RXHP_T DM_RXHP_Table;
RA_T DM_RA_Table; RA_T DM_RA_Table;
false_ALARM_STATISTICS FalseAlmCnt; false_ALARM_STATISTICS FalseAlmCnt;
......
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