Commit b4fe59d8 authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: remove typedef from tstrWILC_UsrScanReq

This patch removes typedef from the struct tstrWILC_UsrScanReq with
related comments and renames it to user_scan_req.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarTony Cho <tony.cho@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 54196322
...@@ -225,7 +225,7 @@ struct hidden_network { ...@@ -225,7 +225,7 @@ struct hidden_network {
u8 u8ssidnum; u8 u8ssidnum;
}; };
typedef struct { struct user_scan_req {
/* Scan user call back function */ /* Scan user call back function */
wilc_scan_result pfUserScanResult; wilc_scan_result pfUserScanResult;
...@@ -234,7 +234,7 @@ typedef struct { ...@@ -234,7 +234,7 @@ typedef struct {
u32 u32RcvdChCount; u32 u32RcvdChCount;
tstrFoundNetworkInfo astrFoundNetworkInfo[MAX_NUM_SCANNED_NETWORKS]; tstrFoundNetworkInfo astrFoundNetworkInfo[MAX_NUM_SCANNED_NETWORKS];
} tstrWILC_UsrScanReq; };
typedef struct { typedef struct {
u8 *pu8bssid; u8 *pu8bssid;
...@@ -304,8 +304,7 @@ enum p2p_listen_state { ...@@ -304,8 +304,7 @@ enum p2p_listen_state {
}; };
struct host_if_drv { struct host_if_drv {
/* Scan user structure */ struct user_scan_req strWILC_UsrScanReq;
tstrWILC_UsrScanReq strWILC_UsrScanReq;
/* Connect User structure */ /* Connect User structure */
tstrWILC_UsrConnReq strWILC_UsrConnReq; tstrWILC_UsrConnReq strWILC_UsrConnReq;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment