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,7 +82,7 @@
/* Remove DIG by yuchen */
typedef struct _Dynamic_Primary_CCA {
struct dynamic_primary_CCA {
u8 PriCCA_flag;
u8 intf_flag;
u8 intf_type;
......@@ -90,7 +90,7 @@ typedef struct _Dynamic_Primary_CCA {
u8 Monitor_flag;
u8 CH_offset;
u8 MF_state;
} Pri_CCA_T, *pPri_CCA_T;
};
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;
......
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