staging: wilc1000: remove typedef from CURRENT_TX_RATE_T

This patch remove typedef from the enum CURRENT_TX_RATE_T.
And rename it to CURRENT_TXRATE.

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Tony Cho <tony.cho@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Leo Kim 2015-10-05 15:25:48 +09:00 committed by Greg Kroah-Hartman
parent 073b8d0ca7
commit 430a78cf77
2 changed files with 4 additions and 4 deletions

View File

@ -1155,7 +1155,7 @@ static s32 Handle_CfgParam(tstrWILC_WFIDrv *drvHandler,
u8WidCnt++;
}
if (strHostIFCfgParamAttr->pstrCfgParamVal.u32SetCfgFlag & CURRENT_TX_RATE) {
CURRENT_TX_RATE_T curr_tx_rate = strHostIFCfgParamAttr->pstrCfgParamVal.curr_tx_rate;
enum CURRENT_TXRATE curr_tx_rate = strHostIFCfgParamAttr->pstrCfgParamVal.curr_tx_rate;
/*----------------------------------------------------------------------*/
/*Rates: 1 2 5.5 11 6 9 12 18 24 36 48 54 Auto */
/*InputValues: 1 2 3 4 5 6 7 8 9 10 11 12 0 */

View File

@ -93,7 +93,7 @@ struct host_if_pmkid_attr {
struct host_if_pmkid pmkidlist[WILC_MAX_NUM_PMKIDS];
};
typedef enum {
enum CURRENT_TXRATE {
AUTORATE = 0,
MBPS_1 = 1,
MBPS_2 = 2,
@ -107,7 +107,7 @@ typedef enum {
MBPS_36 = 36,
MBPS_48 = 48,
MBPS_54 = 54
} CURRENT_TX_RATE_T;
};
struct cfg_param_val {
u32 u32SetCfgFlag;
@ -130,7 +130,7 @@ struct cfg_param_val {
u8 scan_source;
u16 active_scan_time;
u16 passive_scan_time;
CURRENT_TX_RATE_T curr_tx_rate;
enum CURRENT_TXRATE curr_tx_rate;
};