icnss: Increase QMI timeout value
There are cases where IPC router read worker not getting scheduled because of other high priority tasks. And when this happens there could be a delay in receiving messages from WLAN firmware. So increase the timeout delay to 10 seconds. CRs-Fixed: 1110268 Change-Id: I4b3420a91108eca844206789d8f1e478526afd62 Signed-off-by: Sameer Thalappil <sameert@codeaurora.org>
This commit is contained in:
parent
0236a0326d
commit
5ab1f567c4
1 changed files with 2 additions and 2 deletions
|
@ -51,12 +51,12 @@
|
|||
#include "wlan_firmware_service_v01.h"
|
||||
|
||||
#ifdef CONFIG_ICNSS_DEBUG
|
||||
unsigned long qmi_timeout = 3000;
|
||||
unsigned long qmi_timeout = 10000;
|
||||
module_param(qmi_timeout, ulong, 0600);
|
||||
|
||||
#define WLFW_TIMEOUT_MS qmi_timeout
|
||||
#else
|
||||
#define WLFW_TIMEOUT_MS 3000
|
||||
#define WLFW_TIMEOUT_MS 10000
|
||||
#endif
|
||||
#define WLFW_SERVICE_INS_ID_V01 0
|
||||
#define WLFW_CLIENT_ID 0x4b4e454c
|
||||
|
|
Loading…
Add table
Reference in a new issue