mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 09:41:54 +09:00
staging: wilc1000: rename pfUserConnectResult of struct user_conn_req
This patch renames pfUserConnectResult of struct user_conn_req to conn_result to avoid CamelCase naming convention. And, some comments modification that has been included name 'pfUserConnectResult'. Signed-off-by: Leo Kim <leo.kim@atmel.com> Signed-off-by: Glen Lee <glen.lee@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
331ed08002
commit
33bfb198ff
@@ -1029,7 +1029,7 @@ static s32 Handle_Connect(struct host_if_drv *hif_drv,
|
||||
|
||||
hif_drv->usr_conn_req.u8security = pstrHostIFconnectAttr->security;
|
||||
hif_drv->usr_conn_req.tenuAuth_type = pstrHostIFconnectAttr->auth_type;
|
||||
hif_drv->usr_conn_req.pfUserConnectResult = pstrHostIFconnectAttr->result;
|
||||
hif_drv->usr_conn_req.conn_result = pstrHostIFconnectAttr->result;
|
||||
hif_drv->usr_conn_req.u32UserConnectPvoid = pstrHostIFconnectAttr->arg;
|
||||
|
||||
strWIDList[u32WidsCount].id = WID_SUCCESS_FRAME_COUNT;
|
||||
@@ -1333,7 +1333,7 @@ static s32 Handle_ConnectTimeout(struct host_if_drv *hif_drv)
|
||||
|
||||
memset(&strConnectInfo, 0, sizeof(tstrConnectInfo));
|
||||
|
||||
if (hif_drv->usr_conn_req.pfUserConnectResult) {
|
||||
if (hif_drv->usr_conn_req.conn_result) {
|
||||
if (hif_drv->usr_conn_req.pu8bssid) {
|
||||
memcpy(strConnectInfo.au8bssid,
|
||||
hif_drv->usr_conn_req.pu8bssid, 6);
|
||||
@@ -1347,11 +1347,11 @@ static s32 Handle_ConnectTimeout(struct host_if_drv *hif_drv)
|
||||
hif_drv->usr_conn_req.ies_len);
|
||||
}
|
||||
|
||||
hif_drv->usr_conn_req.pfUserConnectResult(CONN_DISCONN_EVENT_CONN_RESP,
|
||||
&strConnectInfo,
|
||||
MAC_DISCONNECTED,
|
||||
NULL,
|
||||
hif_drv->usr_conn_req.u32UserConnectPvoid);
|
||||
hif_drv->usr_conn_req.conn_result(CONN_DISCONN_EVENT_CONN_RESP,
|
||||
&strConnectInfo,
|
||||
MAC_DISCONNECTED,
|
||||
NULL,
|
||||
hif_drv->usr_conn_req.u32UserConnectPvoid);
|
||||
|
||||
kfree(strConnectInfo.pu8ReqIEs);
|
||||
strConnectInfo.pu8ReqIEs = NULL;
|
||||
@@ -1500,7 +1500,7 @@ static s32 Handle_RcvdGnrlAsyncInfo(struct host_if_drv *hif_drv,
|
||||
(hif_drv->hif_state == HOST_IF_CONNECTED) ||
|
||||
hif_drv->usr_scan_req.scan_result) {
|
||||
if (!pstrRcvdGnrlAsyncInfo->buffer ||
|
||||
!hif_drv->usr_conn_req.pfUserConnectResult) {
|
||||
!hif_drv->usr_conn_req.conn_result) {
|
||||
PRINT_ER("driver is null\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
@@ -1595,11 +1595,11 @@ static s32 Handle_RcvdGnrlAsyncInfo(struct host_if_drv *hif_drv,
|
||||
}
|
||||
|
||||
del_timer(&hif_drv->connect_timer);
|
||||
hif_drv->usr_conn_req.pfUserConnectResult(CONN_DISCONN_EVENT_CONN_RESP,
|
||||
&strConnectInfo,
|
||||
u8MacStatus,
|
||||
NULL,
|
||||
hif_drv->usr_conn_req.u32UserConnectPvoid);
|
||||
hif_drv->usr_conn_req.conn_result(CONN_DISCONN_EVENT_CONN_RESP,
|
||||
&strConnectInfo,
|
||||
u8MacStatus,
|
||||
NULL,
|
||||
hif_drv->usr_conn_req.u32UserConnectPvoid);
|
||||
|
||||
if ((u8MacStatus == MAC_CONNECTED) &&
|
||||
(strConnectInfo.u16ConnectStatus == SUCCESSFUL_STATUSCODE)) {
|
||||
@@ -1644,15 +1644,15 @@ static s32 Handle_RcvdGnrlAsyncInfo(struct host_if_drv *hif_drv,
|
||||
strDisconnectNotifInfo.ie = NULL;
|
||||
strDisconnectNotifInfo.ie_len = 0;
|
||||
|
||||
if (hif_drv->usr_conn_req.pfUserConnectResult) {
|
||||
if (hif_drv->usr_conn_req.conn_result) {
|
||||
g_obtainingIP = false;
|
||||
host_int_set_power_mgmt(hif_drv, 0, 0);
|
||||
|
||||
hif_drv->usr_conn_req.pfUserConnectResult(CONN_DISCONN_EVENT_DISCONN_NOTIF,
|
||||
NULL,
|
||||
0,
|
||||
&strDisconnectNotifInfo,
|
||||
hif_drv->usr_conn_req.u32UserConnectPvoid);
|
||||
hif_drv->usr_conn_req.conn_result(CONN_DISCONN_EVENT_DISCONN_NOTIF,
|
||||
NULL,
|
||||
0,
|
||||
&strDisconnectNotifInfo,
|
||||
hif_drv->usr_conn_req.u32UserConnectPvoid);
|
||||
} else {
|
||||
PRINT_ER("Connect result callback function is NULL\n");
|
||||
}
|
||||
@@ -2000,21 +2000,26 @@ static void Handle_Disconnect(struct host_if_drv *hif_drv)
|
||||
|
||||
if (hif_drv->usr_scan_req.scan_result) {
|
||||
del_timer(&hif_drv->scan_timer);
|
||||
hif_drv->usr_scan_req.scan_result(SCAN_EVENT_ABORTED, NULL,
|
||||
hif_drv->usr_scan_req.arg, NULL);
|
||||
hif_drv->usr_scan_req.scan_result(SCAN_EVENT_ABORTED,
|
||||
NULL,
|
||||
hif_drv->usr_scan_req.arg,
|
||||
NULL);
|
||||
hif_drv->usr_scan_req.scan_result = NULL;
|
||||
}
|
||||
|
||||
if (hif_drv->usr_conn_req.pfUserConnectResult) {
|
||||
if (hif_drv->usr_conn_req.conn_result) {
|
||||
if (hif_drv->hif_state == HOST_IF_WAITING_CONN_RESP) {
|
||||
PRINT_D(HOSTINF_DBG, "Upper layer requested termination of connection\n");
|
||||
del_timer(&hif_drv->connect_timer);
|
||||
}
|
||||
|
||||
hif_drv->usr_conn_req.pfUserConnectResult(CONN_DISCONN_EVENT_DISCONN_NOTIF, NULL,
|
||||
0, &strDisconnectNotifInfo, hif_drv->usr_conn_req.u32UserConnectPvoid);
|
||||
hif_drv->usr_conn_req.conn_result(CONN_DISCONN_EVENT_DISCONN_NOTIF,
|
||||
NULL,
|
||||
0,
|
||||
&strDisconnectNotifInfo,
|
||||
hif_drv->usr_conn_req.u32UserConnectPvoid);
|
||||
} else {
|
||||
PRINT_ER("usr_conn_req.pfUserConnectResult = NULL\n");
|
||||
PRINT_ER("usr_conn_req.conn_result = NULL\n");
|
||||
}
|
||||
|
||||
scan_while_connected = false;
|
||||
@@ -4298,7 +4303,7 @@ void GnrlAsyncInfoReceived(u8 *pu8Buffer, u32 u32Length)
|
||||
return;
|
||||
}
|
||||
|
||||
if (!hif_drv->usr_conn_req.pfUserConnectResult) {
|
||||
if (!hif_drv->usr_conn_req.conn_result) {
|
||||
PRINT_ER("Received mac status is not needed when there is no current Connect Reques\n");
|
||||
up(&hif_sema_deinit);
|
||||
return;
|
||||
|
||||
@@ -206,7 +206,7 @@ struct user_conn_req {
|
||||
size_t ssid_len;
|
||||
u8 *ies;
|
||||
size_t ies_len;
|
||||
wilc_connect_result pfUserConnectResult;
|
||||
wilc_connect_result conn_result;
|
||||
bool IsHTCapable;
|
||||
void *u32UserConnectPvoid;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user