mirror of https://gitee.com/openkylin/linux.git
mwifiex: fix command timeout for PCIe chipsets
When WLAN interface is up and running, driver unload and load was causing command timeout error. We enable Rx data by updating RX ring read pointer in init_fw_port(). It should be done when FW is completely intialialised. Command timeout is fixed in this patch by moving init_fw_port() call to mwifiex_init_fw_complete(). Signed-off-by: Zhaoyang Liu <liuzy@marvell.com> Signed-off-by: Amitkumar Karwar <akarwar@marvell.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
3afafd6dcc
commit
398750992e
|
@ -551,11 +551,6 @@ int mwifiex_init_fw(struct mwifiex_adapter *adapter)
|
|||
}
|
||||
}
|
||||
|
||||
if (adapter->if_ops.init_fw_port) {
|
||||
if (adapter->if_ops.init_fw_port(adapter))
|
||||
return -1;
|
||||
}
|
||||
|
||||
for (i = 0; i < adapter->priv_num; i++) {
|
||||
if (adapter->priv[i]) {
|
||||
ret = mwifiex_sta_init_cmd(adapter->priv[i], first_sta,
|
||||
|
|
|
@ -126,6 +126,10 @@ static int num_of_items = ARRAY_SIZE(items);
|
|||
int mwifiex_init_fw_complete(struct mwifiex_adapter *adapter)
|
||||
{
|
||||
|
||||
if (adapter->hw_status == MWIFIEX_HW_STATUS_READY)
|
||||
if (adapter->if_ops.init_fw_port)
|
||||
adapter->if_ops.init_fw_port(adapter);
|
||||
|
||||
adapter->init_wait_q_woken = true;
|
||||
wake_up_interruptible(&adapter->init_wait_q);
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue