mirror of https://gitee.com/openkylin/linux.git
staging: wilc1000: remove redundant reset of station statistics
Driver sends configuration wids to reset connection statistics in the device, but the device already resets it when starting a new connection Signed-off-by: Adham Abozaeid <adham.abozaeid@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
516c115c91
commit
59fb805f5a
|
@ -341,30 +341,12 @@ int wilc_scan(struct wilc_vif *vif, u8 scan_source, u8 scan_type,
|
|||
static int wilc_send_connect_wid(struct wilc_vif *vif)
|
||||
{
|
||||
int result = 0;
|
||||
struct wid wid_list[8];
|
||||
u32 wid_cnt = 0, dummyval = 0;
|
||||
struct wid wid_list[4];
|
||||
u32 wid_cnt = 0;
|
||||
struct host_if_drv *hif_drv = vif->hif_drv;
|
||||
struct wilc_conn_info *conn_attr = &hif_drv->conn_info;
|
||||
struct wilc_join_bss_param *bss_param = conn_attr->param;
|
||||
|
||||
wid_list[wid_cnt].id = WID_SUCCESS_FRAME_COUNT;
|
||||
wid_list[wid_cnt].type = WID_INT;
|
||||
wid_list[wid_cnt].size = sizeof(u32);
|
||||
wid_list[wid_cnt].val = (s8 *)(&(dummyval));
|
||||
wid_cnt++;
|
||||
|
||||
wid_list[wid_cnt].id = WID_RECEIVED_FRAGMENT_COUNT;
|
||||
wid_list[wid_cnt].type = WID_INT;
|
||||
wid_list[wid_cnt].size = sizeof(u32);
|
||||
wid_list[wid_cnt].val = (s8 *)(&(dummyval));
|
||||
wid_cnt++;
|
||||
|
||||
wid_list[wid_cnt].id = WID_FAILED_COUNT;
|
||||
wid_list[wid_cnt].type = WID_INT;
|
||||
wid_list[wid_cnt].size = sizeof(u32);
|
||||
wid_list[wid_cnt].val = (s8 *)(&(dummyval));
|
||||
wid_cnt++;
|
||||
|
||||
wid_list[wid_cnt].id = WID_INFO_ELEMENT_ASSOCIATE;
|
||||
wid_list[wid_cnt].type = WID_BIN_DATA;
|
||||
wid_list[wid_cnt].val = conn_attr->req_ies;
|
||||
|
|
Loading…
Reference in New Issue