forked from Minki/linux
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: Madhumitha Prabakaran <madhumithabiw@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fa8e35c70a
commit
005fb2de9a
@ -82,15 +82,15 @@
|
||||
|
||||
/* Remove DIG by yuchen */
|
||||
|
||||
typedef struct _Dynamic_Primary_CCA {
|
||||
struct dynamic_primary_CCA {
|
||||
u8 PriCCA_flag;
|
||||
u8 intf_flag;
|
||||
u8 intf_type;
|
||||
u8 DupRTS_flag;
|
||||
u8 Monitor_flag;
|
||||
u8 CH_offset;
|
||||
u8 MF_state;
|
||||
} Pri_CCA_T, *pPri_CCA_T;
|
||||
u8 MF_state;
|
||||
};
|
||||
|
||||
typedef struct _Rate_Adaptive_Table_ {
|
||||
u8 firstconnect;
|
||||
@ -1112,7 +1112,7 @@ typedef struct DM_Out_Source_Dynamic_Mechanism_Structure {
|
||||
FAT_T DM_FatTable;
|
||||
DIG_T DM_DigTable;
|
||||
PS_T DM_PSTable;
|
||||
Pri_CCA_T DM_PriCCA;
|
||||
struct dynamic_primary_CCA DM_PriCCA;
|
||||
RXHP_T DM_RXHP_Table;
|
||||
RA_T DM_RA_Table;
|
||||
false_ALARM_STATISTICS FalseAlmCnt;
|
||||
|
Loading…
Reference in New Issue
Block a user