staging: rtl8187se: Convert _RT_PS_MODE typedef into an enum
The Documentation/CodingStyle doesn't recommend the use of typedef, convert this into an enum. While at it, I have also renamed the variable names that were used in this typedef not to use Hungarian notation. Signed-off-by: Ana Rey <anarey@gmail.com> Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
This commit is contained in:
parent
8dc1c48bca
commit
428bd7df5d
2 changed files with 8 additions and 8 deletions
|
@ -289,11 +289,11 @@ enum _ReasonCode {
|
||||||
dest_not_QSTA = 0x32, /* 50 */
|
dest_not_QSTA = 0x32, /* 50 */
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef enum _RT_PS_MODE {
|
enum rt_ps_mode {
|
||||||
eActive, /* Active/Continuous access. */
|
ACTIVE, /* Active/Continuous access. */
|
||||||
eMaxPs, /* Max power save mode. */
|
MAX_PS, /* Max power save mode. */
|
||||||
eFastPs /* Fast power save mode. */
|
FAST_PS /* Fast power save mode. */
|
||||||
} RT_PS_MODE;
|
};
|
||||||
|
|
||||||
/* by amy for power save. */
|
/* by amy for power save. */
|
||||||
struct r8180_priv {
|
struct r8180_priv {
|
||||||
|
@ -462,7 +462,7 @@ struct r8180_priv {
|
||||||
bool SetRFPowerStateInProgress;
|
bool SetRFPowerStateInProgress;
|
||||||
u8 RFProgType;
|
u8 RFProgType;
|
||||||
bool bLeisurePs;
|
bool bLeisurePs;
|
||||||
RT_PS_MODE dot11PowerSaveMode;
|
enum rt_ps_mode dot11PowerSaveMode;
|
||||||
/* u32 NumRxOkInPeriod;*/ /* YJ,del,080828 */
|
/* u32 NumRxOkInPeriod;*/ /* YJ,del,080828 */
|
||||||
/* u32 NumTxOkInPeriod;*/ /* YJ,del,080828 */
|
/* u32 NumTxOkInPeriod;*/ /* YJ,del,080828 */
|
||||||
u8 TxPollingTimes;
|
u8 TxPollingTimes;
|
||||||
|
|
|
@ -2444,7 +2444,7 @@ static short rtl8180_init(struct net_device *dev)
|
||||||
priv->led_strategy = SW_LED_MODE0;
|
priv->led_strategy = SW_LED_MODE0;
|
||||||
priv->TxPollingTimes = 0; /* lzm add 080826 */
|
priv->TxPollingTimes = 0; /* lzm add 080826 */
|
||||||
priv->bLeisurePs = true;
|
priv->bLeisurePs = true;
|
||||||
priv->dot11PowerSaveMode = eActive;
|
priv->dot11PowerSaveMode = ACTIVE;
|
||||||
priv->AdMinCheckPeriod = 5;
|
priv->AdMinCheckPeriod = 5;
|
||||||
priv->AdMaxCheckPeriod = 10;
|
priv->AdMaxCheckPeriod = 10;
|
||||||
priv->AdMaxRxSsThreshold = 30; /* 60->30 */
|
priv->AdMaxRxSsThreshold = 30; /* 60->30 */
|
||||||
|
@ -2869,7 +2869,7 @@ static struct net_device_stats *rtl8180_stats(struct net_device *dev)
|
||||||
* Change current and default preamble mode.
|
* Change current and default preamble mode.
|
||||||
*/
|
*/
|
||||||
static bool MgntActSet_802_11_PowerSaveMode(struct r8180_priv *priv,
|
static bool MgntActSet_802_11_PowerSaveMode(struct r8180_priv *priv,
|
||||||
RT_PS_MODE rtPsMode)
|
enum rt_ps_mode rtPsMode)
|
||||||
{
|
{
|
||||||
/* Currently, we do not change power save mode on IBSS mode. */
|
/* Currently, we do not change power save mode on IBSS mode. */
|
||||||
if (priv->ieee80211->iw_mode == IW_MODE_ADHOC)
|
if (priv->ieee80211->iw_mode == IW_MODE_ADHOC)
|
||||||
|
|
Loading…
Add table
Reference in a new issue