staging: rtl8192e: Convert typedef dig_t to struct dig_t

Remove typedef from struct.
Rename struct.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger
2011-07-18 23:38:55 -05:00
parent 8e8b90c60b
commit 7204b51e0a
2 changed files with 4 additions and 5 deletions

View File

@@ -64,7 +64,7 @@ static u32 edca_setting_UL[HT_IOT_PEER_MAX] =
/*------------------------Define global variable-----------------------------*/
dig_t dm_digtable;
struct dig_t dm_digtable;
u8 dm_shadow[16][256] = {{0}};
struct drx_path_sel DM_RxPathSelTable;
/*------------------------Define global variable-----------------------------*/

View File

@@ -84,8 +84,7 @@
/*------------------------------Define structure----------------------------*/
typedef struct _dynamic_initial_gain_threshold_
{
struct dig_t {
u8 dig_enable_flag;
u8 dig_algorithm;
u8 Dig_TwoPort_Algorithm;
@@ -126,7 +125,7 @@ typedef struct _dynamic_initial_gain_threshold_
bool initialgain_lowerbound_state;
long rssi_val;
}dig_t;
};//;
typedef enum tag_dynamic_init_gain_state_definition
{
@@ -260,7 +259,7 @@ typedef struct tag_Tx_Config_Cmd_Format
/*------------------------Export global variable----------------------------*/
extern dig_t dm_digtable;
extern struct dig_t dm_digtable;
extern u8 dm_shadow[16][256];
extern struct drx_path_sel DM_RxPathSelTable;