u8 u8MacStatusReasonCode;
        u8 u8MacStatusAdditionalInfo;
        struct connect_info strConnectInfo;
-       tstrDisconnectNotifInfo strDisconnectNotifInfo;
+       struct disconnect_info strDisconnectNotifInfo;
        s32 s32Err = 0;
        struct host_if_drv *hif_drv = vif->hif_drv;
 
                        hif_drv->usr_conn_req.ies = NULL;
                } else if ((u8MacStatus == MAC_DISCONNECTED) &&
                           (hif_drv->hif_state == HOST_IF_CONNECTED)) {
-                       memset(&strDisconnectNotifInfo, 0, sizeof(tstrDisconnectNotifInfo));
+                       memset(&strDisconnectNotifInfo, 0, sizeof(struct disconnect_info));
 
                        if (hif_drv->usr_scan_req.scan_result) {
                                del_timer(&hif_drv->scan_timer);
        if (result) {
                netdev_err(vif->ndev, "Failed to send dissconect\n");
        } else {
-               tstrDisconnectNotifInfo strDisconnectNotifInfo;
+               struct disconnect_info strDisconnectNotifInfo;
 
-               memset(&strDisconnectNotifInfo, 0, sizeof(tstrDisconnectNotifInfo));
+               memset(&strDisconnectNotifInfo, 0, sizeof(struct disconnect_info));
 
                strDisconnectNotifInfo.u16reason = 0;
                strDisconnectNotifInfo.ie = NULL;
 
 typedef void (*wilc_connect_result)(enum conn_event,
                                     struct connect_info *,
                                     u8,
-                                    tstrDisconnectNotifInfo *,
+                                    struct disconnect_info *,
                                     void *);
 
 typedef void (*wilc_remain_on_chan_expired)(void *, u32);
 
 static void CfgConnectResult(enum conn_event enuConnDisconnEvent,
                             struct connect_info *pstrConnectInfo,
                             u8 u8MacStatus,
-                            tstrDisconnectNotifInfo *pstrDisconnectNotifInfo,
+                            struct disconnect_info *pstrDisconnectNotifInfo,
                             void *pUserVoid)
 {
        struct wilc_priv *priv;