Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef RT_SMOOTH_DATA_4RF to struct rt_sm…
Browse files Browse the repository at this point in the history
…ooth_data_4rf

Remove typedef from struct.
Rename struct.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
  • Loading branch information
Larry Finger authored and Larry Finger committed Aug 24, 2011
1 parent 0db4279 commit 9d94bbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/rtl8192e/rtl_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -369,12 +369,12 @@ typedef struct _rt_9x_tx_rate_history {
u32 ht_mcs[4][16];
}rt_tx_rahis_t, *prt_tx_rahis_t;

typedef struct _RT_SMOOTH_DATA_4RF {
struct rt_smooth_data_4rf {
char elements[4][100];
u32 index;
u32 TotalNum;
u32 TotalVal[4];
}RT_SMOOTH_DATA_4RF, *PRT_SMOOTH_DATA_4RF;
};//, *struct rt_smooth_data_4rf *;

typedef struct Stats
{
Expand Down Expand Up @@ -468,7 +468,7 @@ typedef struct Stats
rt_tx_rahis_t txrate;
u32 Slide_Beacon_pwdb[100];
u32 Slide_Beacon_Total;
RT_SMOOTH_DATA_4RF cck_adc_pwdb;
struct rt_smooth_data_4rf cck_adc_pwdb;
u32 CurrentShowTxate;
} Stats;

Expand Down

0 comments on commit 9d94bbb

Please sign in to comment.