staging: rtl8192e: Convert typedef Stats to struct rt_stats
Remove typedef from struct. Rename struct. Rename uses. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
49f4e74a94
commit
2fac6fc46d
2 changed files with 4 additions and 5 deletions
|
@ -1354,7 +1354,7 @@ short rtl8192_init(struct net_device *dev)
|
|||
{
|
||||
struct r8192_priv *priv = rtllib_priv(dev);
|
||||
|
||||
memset(&(priv->stats),0,sizeof(struct Stats));
|
||||
memset(&(priv->stats),0,sizeof(struct rt_stats));
|
||||
|
||||
rtl8192_dbgp_flag_init(dev);
|
||||
|
||||
|
|
|
@ -376,8 +376,7 @@ struct rt_smooth_data_4rf {
|
|||
u32 TotalVal[4];
|
||||
};//, *struct rt_smooth_data_4rf *;
|
||||
|
||||
typedef struct Stats
|
||||
{
|
||||
struct rt_stats {
|
||||
unsigned long txrdu;
|
||||
unsigned long rxrdu;
|
||||
unsigned long rxok;
|
||||
|
@ -470,7 +469,7 @@ typedef struct Stats
|
|||
u32 Slide_Beacon_Total;
|
||||
struct rt_smooth_data_4rf cck_adc_pwdb;
|
||||
u32 CurrentShowTxate;
|
||||
} Stats;
|
||||
};
|
||||
|
||||
struct channel_access_setting {
|
||||
u16 SIFS_Timer;
|
||||
|
@ -632,7 +631,7 @@ typedef struct r8192_priv
|
|||
struct semaphore rf_sem;
|
||||
struct mutex mutex;
|
||||
|
||||
struct Stats stats;
|
||||
struct rt_stats stats;
|
||||
struct iw_statistics wstats;
|
||||
struct proc_dir_entry *dir_dev;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue