mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-27 05:32:27 +00:00
staging: rtl8192e: Convert typedef rate_adaptive to struct rate_adaptive
Remove typedef from struct. Rename struct. Rename uses. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
dca0eb1e15
commit
9be6f10ed3
@ -594,7 +594,7 @@ typedef struct r8192_priv
|
|||||||
IC_INFERIORITY_8192S IC_Class;
|
IC_INFERIORITY_8192S IC_Class;
|
||||||
HT_CHANNEL_WIDTH CurrentChannelBW;
|
HT_CHANNEL_WIDTH CurrentChannelBW;
|
||||||
struct bb_reg_definition PHYRegDef[4];
|
struct bb_reg_definition PHYRegDef[4];
|
||||||
rate_adaptive rate_adaptive;
|
struct rate_adaptive rate_adaptive;
|
||||||
|
|
||||||
struct ccktxbbgain cck_txbbgain_table[CCKTxBBGainTableLength];
|
struct ccktxbbgain cck_txbbgain_table[CCKTxBBGainTableLength];
|
||||||
struct ccktxbbgain cck_txbbgain_ch14_table[CCKTxBBGainTableLength];
|
struct ccktxbbgain cck_txbbgain_ch14_table[CCKTxBBGainTableLength];
|
||||||
|
@ -251,7 +251,7 @@ extern void init_rate_adaptive(struct net_device * dev)
|
|||||||
{
|
{
|
||||||
|
|
||||||
struct r8192_priv *priv = rtllib_priv(dev);
|
struct r8192_priv *priv = rtllib_priv(dev);
|
||||||
prate_adaptive pra = (prate_adaptive)&priv->rate_adaptive;
|
struct rate_adaptive *pra = (struct rate_adaptive *)&priv->rate_adaptive;
|
||||||
|
|
||||||
pra->ratr_state = DM_RATR_STA_MAX;
|
pra->ratr_state = DM_RATR_STA_MAX;
|
||||||
pra->high2low_rssi_thresh_for_ra = RateAdaptiveTH_High;
|
pra->high2low_rssi_thresh_for_ra = RateAdaptiveTH_High;
|
||||||
@ -295,7 +295,7 @@ static void dm_check_rate_adaptive(struct net_device * dev)
|
|||||||
{
|
{
|
||||||
struct r8192_priv *priv = rtllib_priv(dev);
|
struct r8192_priv *priv = rtllib_priv(dev);
|
||||||
struct rt_hi_throughput *pHTInfo = priv->rtllib->pHTInfo;
|
struct rt_hi_throughput *pHTInfo = priv->rtllib->pHTInfo;
|
||||||
prate_adaptive pra = (prate_adaptive)&priv->rate_adaptive;
|
struct rate_adaptive *pra = (struct rate_adaptive *)&priv->rate_adaptive;
|
||||||
u32 currentRATR, targetRATR = 0;
|
u32 currentRATR, targetRATR = 0;
|
||||||
u32 LowRSSIThreshForRA = 0, HighRSSIThreshForRA = 0;
|
u32 LowRSSIThreshForRA = 0, HighRSSIThreshForRA = 0;
|
||||||
bool bshort_gi_enabled = false;
|
bool bshort_gi_enabled = false;
|
||||||
@ -1801,7 +1801,7 @@ dm_change_rxpath_selection_setting(
|
|||||||
s32 DM_Value)
|
s32 DM_Value)
|
||||||
{
|
{
|
||||||
struct r8192_priv *priv = rtllib_priv(dev);
|
struct r8192_priv *priv = rtllib_priv(dev);
|
||||||
prate_adaptive pRA = (prate_adaptive)&(priv->rate_adaptive);
|
struct rate_adaptive *pRA = (struct rate_adaptive *)&(priv->rate_adaptive);
|
||||||
|
|
||||||
|
|
||||||
if (DM_Type == 0)
|
if (DM_Type == 0)
|
||||||
|
@ -2015,8 +2015,7 @@ struct sw_cam_table {
|
|||||||
|
|
||||||
};//,*struct sw_cam_table *;
|
};//,*struct sw_cam_table *;
|
||||||
#define TOTAL_CAM_ENTRY 32
|
#define TOTAL_CAM_ENTRY 32
|
||||||
typedef struct _rate_adaptive
|
struct rate_adaptive {
|
||||||
{
|
|
||||||
u8 rate_adaptive_disabled;
|
u8 rate_adaptive_disabled;
|
||||||
u8 ratr_state;
|
u8 ratr_state;
|
||||||
u16 reserve;
|
u16 reserve;
|
||||||
@ -2038,7 +2037,7 @@ typedef struct _rate_adaptive
|
|||||||
u32 last_ratr;
|
u32 last_ratr;
|
||||||
u8 PreRATRState;
|
u8 PreRATRState;
|
||||||
|
|
||||||
} rate_adaptive, *prate_adaptive;
|
};
|
||||||
typedef enum _RATR_TABLE_MODE_8192S{
|
typedef enum _RATR_TABLE_MODE_8192S{
|
||||||
RATR_INX_WIRELESS_NGB = 0,
|
RATR_INX_WIRELESS_NGB = 0,
|
||||||
RATR_INX_WIRELESS_NG = 1,
|
RATR_INX_WIRELESS_NG = 1,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user