staging: wilc1000: remove typedef from tenuScanEvent
This patch removes typedef from the enum tenuScanEvent and rename it to scan_event. 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:
Родитель
03e7b9c428
Коммит
1ec3815f38
|
@ -1371,7 +1371,7 @@ ERRORHANDLER:
|
||||||
* @date
|
* @date
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
*/
|
*/
|
||||||
static s32 Handle_ScanDone(struct host_if_drv *drvHandler, tenuScanEvent enuEvent)
|
static s32 Handle_ScanDone(struct host_if_drv *drvHandler, enum scan_event enuEvent)
|
||||||
{
|
{
|
||||||
s32 s32Error = 0;
|
s32 s32Error = 0;
|
||||||
|
|
||||||
|
|
|
@ -153,10 +153,12 @@ struct found_net_info {
|
||||||
s8 s8rssi;
|
s8 s8rssi;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef enum {SCAN_EVENT_NETWORK_FOUND = 0,
|
enum scan_event {
|
||||||
SCAN_EVENT_DONE = 1,
|
SCAN_EVENT_NETWORK_FOUND = 0,
|
||||||
SCAN_EVENT_ABORTED = 2,
|
SCAN_EVENT_DONE = 1,
|
||||||
SCAN_EVENT_FORCE_32BIT = 0xFFFFFFFF} tenuScanEvent;
|
SCAN_EVENT_ABORTED = 2,
|
||||||
|
SCAN_EVENT_FORCE_32BIT = 0xFFFFFFFF
|
||||||
|
};
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
CONN_DISCONN_EVENT_CONN_RESP = 0,
|
CONN_DISCONN_EVENT_CONN_RESP = 0,
|
||||||
|
@ -173,7 +175,8 @@ enum KEY_TYPE {
|
||||||
|
|
||||||
|
|
||||||
/*Scan callBack function definition*/
|
/*Scan callBack function definition*/
|
||||||
typedef void (*wilc_scan_result)(tenuScanEvent, tstrNetworkInfo *, void *, void *);
|
typedef void (*wilc_scan_result)(enum scan_event, tstrNetworkInfo *,
|
||||||
|
void *, void *);
|
||||||
|
|
||||||
/*Connect callBack function definition*/
|
/*Connect callBack function definition*/
|
||||||
typedef void (*wilc_connect_result)(tenuConnDisconnEvent,
|
typedef void (*wilc_connect_result)(tenuConnDisconnEvent,
|
||||||
|
@ -1171,7 +1174,7 @@ s32 host_int_frame_register(struct host_if_drv *hWFIDrv, u16 u16FrameType, bool
|
||||||
int host_int_set_wfi_drv_handler(struct host_if_drv *address);
|
int host_int_set_wfi_drv_handler(struct host_if_drv *address);
|
||||||
int host_int_set_operation_mode(struct host_if_drv *wfi_drv, u32 mode);
|
int host_int_set_operation_mode(struct host_if_drv *wfi_drv, u32 mode);
|
||||||
|
|
||||||
static s32 Handle_ScanDone(struct host_if_drv *drvHandler, tenuScanEvent enuEvent);
|
static s32 Handle_ScanDone(struct host_if_drv *drvHandler, enum scan_event enuEvent);
|
||||||
|
|
||||||
void host_int_freeJoinParams(void *pJoinParams);
|
void host_int_freeJoinParams(void *pJoinParams);
|
||||||
|
|
||||||
|
|
|
@ -357,7 +357,7 @@ void add_network_to_shadow(tstrNetworkInfo *pstrNetworkInfo, void *pUserVoid, vo
|
||||||
* @date
|
* @date
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
*/
|
*/
|
||||||
static void CfgScanResult(tenuScanEvent enuScanEvent, tstrNetworkInfo *pstrNetworkInfo, void *pUserVoid, void *pJoinParams)
|
static void CfgScanResult(enum scan_event enuScanEvent, tstrNetworkInfo *pstrNetworkInfo, void *pUserVoid, void *pJoinParams)
|
||||||
{
|
{
|
||||||
struct wilc_priv *priv;
|
struct wilc_priv *priv;
|
||||||
struct wiphy *wiphy;
|
struct wiphy *wiphy;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче