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

staging: wilc1000: pass struct wilc

Pass struct wilc to the following functions. The functions need wilc to
get proper vif using id from wilc device.
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 71130e81
...@@ -135,9 +135,10 @@ s32 wilc_dealloc_network_info(tstrNetworkInfo *pstrNetworkInfo); ...@@ -135,9 +135,10 @@ s32 wilc_dealloc_network_info(tstrNetworkInfo *pstrNetworkInfo);
s32 wilc_parse_assoc_resp_info(u8 *pu8Buffer, u32 u32BufferLen, s32 wilc_parse_assoc_resp_info(u8 *pu8Buffer, u32 u32BufferLen,
tstrConnectRespInfo **ppstrConnectRespInfo); tstrConnectRespInfo **ppstrConnectRespInfo);
s32 wilc_dealloc_assoc_resp_info(tstrConnectRespInfo *pstrConnectRespInfo); s32 wilc_dealloc_assoc_resp_info(tstrConnectRespInfo *pstrConnectRespInfo);
void wilc_scan_complete_received(struct wilc *wilc, u8 *pu8Buffer,
void wilc_network_info_received(u8 *pu8Buffer, u32 u32Length); u32 u32Length);
void wilc_gnrl_async_info_received(u8 *pu8Buffer, u32 u32Length); void wilc_network_info_received(struct wilc *wilc, u8 *pu8Buffer,
void wilc_scan_complete_received(u8 *pu8Buffer, u32 u32Length); u32 u32Length);
void wilc_gnrl_async_info_received(struct wilc *wilc, u8 *pu8Buffer,
u32 u32Length);
#endif #endif
...@@ -4028,7 +4028,8 @@ s32 wilc_deinit(struct wilc_vif *vif) ...@@ -4028,7 +4028,8 @@ s32 wilc_deinit(struct wilc_vif *vif)
return result; return result;
} }
void wilc_network_info_received(u8 *pu8Buffer, u32 u32Length) void wilc_network_info_received(struct wilc *wilc, u8 *pu8Buffer,
u32 u32Length)
{ {
s32 result = 0; s32 result = 0;
struct host_if_msg msg; struct host_if_msg msg;
...@@ -4057,7 +4058,8 @@ void wilc_network_info_received(u8 *pu8Buffer, u32 u32Length) ...@@ -4057,7 +4058,8 @@ void wilc_network_info_received(u8 *pu8Buffer, u32 u32Length)
PRINT_ER("Error in sending network info message queue message parameters: Error(%d)\n", result); PRINT_ER("Error in sending network info message queue message parameters: Error(%d)\n", result);
} }
void wilc_gnrl_async_info_received(u8 *pu8Buffer, u32 u32Length) void wilc_gnrl_async_info_received(struct wilc *wilc, u8 *pu8Buffer,
u32 u32Length)
{ {
s32 result = 0; s32 result = 0;
struct host_if_msg msg; struct host_if_msg msg;
...@@ -4098,7 +4100,8 @@ void wilc_gnrl_async_info_received(u8 *pu8Buffer, u32 u32Length) ...@@ -4098,7 +4100,8 @@ void wilc_gnrl_async_info_received(u8 *pu8Buffer, u32 u32Length)
up(&hif_sema_deinit); up(&hif_sema_deinit);
} }
void wilc_scan_complete_received(u8 *pu8Buffer, u32 u32Length) void wilc_scan_complete_received(struct wilc *wilc, u8 *pu8Buffer,
u32 u32Length)
{ {
s32 result = 0; s32 result = 0;
struct host_if_msg msg; struct host_if_msg msg;
......
...@@ -988,7 +988,7 @@ static void wilc_wlan_handle_rxq(struct wilc *wilc) ...@@ -988,7 +988,7 @@ static void wilc_wlan_handle_rxq(struct wilc *wilc)
} else { } else {
struct wilc_cfg_rsp rsp; struct wilc_cfg_rsp rsp;
wilc_wlan_cfg_indicate_rx(&buffer[pkt_offset + offset], pkt_len, &rsp); wilc_wlan_cfg_indicate_rx(wilc, &buffer[pkt_offset + offset], pkt_len, &rsp);
if (rsp.type == WILC_CFG_RSP) { if (rsp.type == WILC_CFG_RSP) {
PRINT_D(RX_DBG, "wilc->cfg_seq_no = %d - rsp.seq_no = %d\n", wilc->cfg_seq_no, rsp.seq_no); PRINT_D(RX_DBG, "wilc->cfg_seq_no = %d - rsp.seq_no = %d\n", wilc->cfg_seq_no, rsp.seq_no);
if (wilc->cfg_seq_no == rsp.seq_no) if (wilc->cfg_seq_no == rsp.seq_no)
......
...@@ -495,7 +495,8 @@ int wilc_wlan_cfg_get_wid_value(u16 wid, u8 *buffer, u32 buffer_size) ...@@ -495,7 +495,8 @@ int wilc_wlan_cfg_get_wid_value(u16 wid, u8 *buffer, u32 buffer_size)
return ret; return ret;
} }
int wilc_wlan_cfg_indicate_rx(u8 *frame, int size, struct wilc_cfg_rsp *rsp) int wilc_wlan_cfg_indicate_rx(struct wilc *wilc, u8 *frame, int size,
struct wilc_cfg_rsp *rsp)
{ {
int ret = 1; int ret = 1;
u8 msg_type; u8 msg_type;
...@@ -522,17 +523,17 @@ int wilc_wlan_cfg_indicate_rx(u8 *frame, int size, struct wilc_cfg_rsp *rsp) ...@@ -522,17 +523,17 @@ int wilc_wlan_cfg_indicate_rx(u8 *frame, int size, struct wilc_cfg_rsp *rsp)
rsp->seq_no = msg_id; rsp->seq_no = msg_id;
/*call host interface info parse as well*/ /*call host interface info parse as well*/
PRINT_INFO(RX_DBG, "Info message received\n"); PRINT_INFO(RX_DBG, "Info message received\n");
wilc_gnrl_async_info_received(frame - 4, size + 4); wilc_gnrl_async_info_received(wilc, frame - 4, size + 4);
break; break;
case 'N': case 'N':
wilc_network_info_received(frame - 4, size + 4); wilc_network_info_received(wilc, frame - 4, size + 4);
rsp->type = 0; rsp->type = 0;
break; break;
case 'S': case 'S':
PRINT_INFO(RX_DBG, "Scan Notification Received\n"); PRINT_INFO(RX_DBG, "Scan Notification Received\n");
wilc_scan_complete_received(frame - 4, size + 4); wilc_scan_complete_received(wilc, frame - 4, size + 4);
break; break;
default: default:
......
...@@ -30,10 +30,12 @@ typedef struct { ...@@ -30,10 +30,12 @@ typedef struct {
u8 *str; u8 *str;
} wilc_cfg_str_t; } wilc_cfg_str_t;
struct wilc;
int wilc_wlan_cfg_set_wid(u8 *frame, u32 offset, u16 id, u8 *buf, int size); int wilc_wlan_cfg_set_wid(u8 *frame, u32 offset, u16 id, u8 *buf, int size);
int wilc_wlan_cfg_get_wid(u8 *frame, u32 offset, u16 id); int wilc_wlan_cfg_get_wid(u8 *frame, u32 offset, u16 id);
int wilc_wlan_cfg_get_wid_value(u16 wid, u8 *buffer, u32 buffer_size); int wilc_wlan_cfg_get_wid_value(u16 wid, u8 *buffer, u32 buffer_size);
int wilc_wlan_cfg_indicate_rx(u8 *frame, int size, struct wilc_cfg_rsp *rsp); int wilc_wlan_cfg_indicate_rx(struct wilc *wilc, u8 *frame, int size,
struct wilc_cfg_rsp *rsp);
int wilc_wlan_cfg_init(wilc_debug_func func); int wilc_wlan_cfg_init(wilc_debug_func func);
#endif #endif
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