staging: rtl8192e: Convert typedef RT_JOIN_ACTION to enum rt_join_action
Remove typedef from enum. Rename enum. Rename uses. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
8304cc64dc
commit
f6ce577e38
1 changed files with 3 additions and 3 deletions
|
@ -1812,12 +1812,12 @@ enum ips_callback_function {
|
||||||
IPS_CALLBACK_JOIN_REQUEST = 2,
|
IPS_CALLBACK_JOIN_REQUEST = 2,
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef enum _RT_JOIN_ACTION{
|
enum rt_join_action {
|
||||||
RT_JOIN_INFRA = 1,
|
RT_JOIN_INFRA = 1,
|
||||||
RT_JOIN_IBSS = 2,
|
RT_JOIN_IBSS = 2,
|
||||||
RT_START_IBSS = 3,
|
RT_START_IBSS = 3,
|
||||||
RT_NO_ACTION = 4,
|
RT_NO_ACTION = 4,
|
||||||
} RT_JOIN_ACTION;
|
};
|
||||||
|
|
||||||
struct ibss_parms {
|
struct ibss_parms {
|
||||||
u16 atimWin;
|
u16 atimWin;
|
||||||
|
@ -1866,7 +1866,7 @@ struct rt_pwr_save_ctrl {
|
||||||
enum ips_callback_function ReturnPoint;
|
enum ips_callback_function ReturnPoint;
|
||||||
|
|
||||||
bool bTmpBssDesc;
|
bool bTmpBssDesc;
|
||||||
RT_JOIN_ACTION tmpJoinAction;
|
enum rt_join_action tmpJoinAction;
|
||||||
struct rtllib_network tmpBssDesc;
|
struct rtllib_network tmpBssDesc;
|
||||||
|
|
||||||
bool bTmpScanOnly;
|
bool bTmpScanOnly;
|
||||||
|
|
Loading…
Add table
Reference in a new issue