Commit 7036c624 authored by Glen Lee's avatar Glen Lee Committed by Greg Kroah-Hartman

staging: wilc1000: change join_req_drv type and it's name

To use wilc_get_vif_idx instead of the last get_id_from_handler, join_req_drv
needs to be changed it's type with wilc_vif and name as well.
As a result, get_id_from_handler is not used anymore, so remove it.
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 31f0f697
...@@ -259,7 +259,7 @@ static u8 mode_11i; ...@@ -259,7 +259,7 @@ static u8 mode_11i;
static u8 auth_type; static u8 auth_type;
static u32 join_req_size; static u32 join_req_size;
static u32 info_element_size; static u32 info_element_size;
static struct host_if_drv *join_req_drv; static struct wilc_vif *join_req_vif;
#define REAL_JOIN_REQ 0 #define REAL_JOIN_REQ 0
#define FLUSHED_JOIN_REQ 1 #define FLUSHED_JOIN_REQ 1
#define FLUSHED_BYTE_POS 79 #define FLUSHED_BYTE_POS 79
...@@ -294,21 +294,6 @@ static int remove_handler_in_list(struct host_if_drv *handler) ...@@ -294,21 +294,6 @@ static int remove_handler_in_list(struct host_if_drv *handler)
return -EINVAL; return -EINVAL;
} }
static int get_id_from_handler(struct host_if_drv *handler)
{
int i;
if (!handler)
return 0;
for (i = 1; i < ARRAY_SIZE(wfidrv_list); i++) {
if (wfidrv_list[i] == handler)
return i;
}
return 0;
}
/* The u8IfIdx starts from 0 to NUM_CONCURRENT_IFC -1, but 0 index used as /* The u8IfIdx starts from 0 to NUM_CONCURRENT_IFC -1, but 0 index used as
* special purpose in wilc device, so we add 1 to the index to starts from 1. * special purpose in wilc device, so we add 1 to the index to starts from 1.
* As a result, the returned index will be 1 to NUM_CONCURRENT_IFC. * As a result, the returned index will be 1 to NUM_CONCURRENT_IFC.
...@@ -1235,7 +1220,7 @@ static s32 Handle_Connect(struct wilc_vif *vif, ...@@ -1235,7 +1220,7 @@ static s32 Handle_Connect(struct wilc_vif *vif,
if (memcmp("DIRECT-", pstrHostIFconnectAttr->ssid, 7)) { if (memcmp("DIRECT-", pstrHostIFconnectAttr->ssid, 7)) {
memcpy(join_req, pu8CurrByte, join_req_size); memcpy(join_req, pu8CurrByte, join_req_size);
join_req_drv = hif_drv; join_req_vif = vif;
} }
PRINT_D(GENERIC_DBG, "send HOST_IF_WAITING_CONN_RESP\n"); PRINT_D(GENERIC_DBG, "send HOST_IF_WAITING_CONN_RESP\n");
...@@ -1349,7 +1334,7 @@ static s32 Handle_FlushConnect(struct wilc_vif *vif) ...@@ -1349,7 +1334,7 @@ static s32 Handle_FlushConnect(struct wilc_vif *vif)
result = wilc_send_config_pkt(hif_drv->wilc, SET_CFG, strWIDList, result = wilc_send_config_pkt(hif_drv->wilc, SET_CFG, strWIDList,
u32WidsCount, u32WidsCount,
get_id_from_handler(join_req_drv)); wilc_get_vif_idx(join_req_vif));
if (result) { if (result) {
PRINT_ER("failed to send config packet\n"); PRINT_ER("failed to send config packet\n");
result = -EINVAL; result = -EINVAL;
...@@ -1426,12 +1411,12 @@ static s32 Handle_ConnectTimeout(struct wilc_vif *vif) ...@@ -1426,12 +1411,12 @@ static s32 Handle_ConnectTimeout(struct wilc_vif *vif)
eth_zero_addr(wilc_connected_ssid); eth_zero_addr(wilc_connected_ssid);
if (join_req && join_req_drv == hif_drv) { if (join_req && join_req_vif == vif) {
kfree(join_req); kfree(join_req);
join_req = NULL; join_req = NULL;
} }
if (info_element && join_req_drv == hif_drv) { if (info_element && join_req_vif == vif) {
kfree(info_element); kfree(info_element);
info_element = NULL; info_element = NULL;
} }
...@@ -1724,12 +1709,12 @@ static s32 Handle_RcvdGnrlAsyncInfo(struct wilc_vif *vif, ...@@ -1724,12 +1709,12 @@ static s32 Handle_RcvdGnrlAsyncInfo(struct wilc_vif *vif,
kfree(hif_drv->usr_conn_req.ies); kfree(hif_drv->usr_conn_req.ies);
hif_drv->usr_conn_req.ies = NULL; hif_drv->usr_conn_req.ies = NULL;
if (join_req && join_req_drv == hif_drv) { if (join_req && join_req_vif == vif) {
kfree(join_req); kfree(join_req);
join_req = NULL; join_req = NULL;
} }
if (info_element && join_req_drv == hif_drv) { if (info_element && join_req_vif == vif) {
kfree(info_element); kfree(info_element);
info_element = NULL; info_element = NULL;
} }
...@@ -2101,12 +2086,12 @@ static void Handle_Disconnect(struct wilc_vif *vif) ...@@ -2101,12 +2086,12 @@ static void Handle_Disconnect(struct wilc_vif *vif)
kfree(hif_drv->usr_conn_req.ies); kfree(hif_drv->usr_conn_req.ies);
hif_drv->usr_conn_req.ies = NULL; hif_drv->usr_conn_req.ies = NULL;
if (join_req && join_req_drv == hif_drv) { if (join_req && join_req_vif == vif) {
kfree(join_req); kfree(join_req);
join_req = NULL; join_req = NULL;
} }
if (info_element && join_req_drv == hif_drv) { if (info_element && join_req_vif == vif) {
kfree(info_element); kfree(info_element);
info_element = NULL; info_element = NULL;
} }
......
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