This patch removes typedef from the struct tstrWILC_UsrScanReq with
related comments and renames it to user_scan_req.
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>
        u8 u8ssidnum;
 };
 
-typedef struct {
+struct user_scan_req {
        /* Scan user call back function */
        wilc_scan_result pfUserScanResult;
 
 
        u32 u32RcvdChCount;
        tstrFoundNetworkInfo astrFoundNetworkInfo[MAX_NUM_SCANNED_NETWORKS];
-} tstrWILC_UsrScanReq;
+};
 
 typedef struct {
        u8 *pu8bssid;
 };
 
 struct host_if_drv {
-       /* Scan user structure */
-       tstrWILC_UsrScanReq strWILC_UsrScanReq;
+       struct user_scan_req strWILC_UsrScanReq;
 
        /* Connect User structure */
        tstrWILC_UsrConnReq strWILC_UsrConnReq;