diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2016-09-24 02:00:57 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2016-09-24 02:00:56 -0700 |
| commit | 6e3db51c970c7b92b8f18f0b660015962dfcc5da (patch) | |
| tree | e51064085212970dbc413e16ebc3632a2f57d5de | |
| parent | 9897e1c74cf1f214521b4e2788396d573f87aea0 (diff) | |
| parent | 2accc89b03f0aafbf16f35d05f88b34cf529a147 (diff) | |
Merge "icnss: Add debug support of configuring QMI timeout"
| -rw-r--r-- | drivers/soc/qcom/icnss.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/soc/qcom/icnss.c b/drivers/soc/qcom/icnss.c index 232ee28318e7..b7d34022d16e 100644 --- a/drivers/soc/qcom/icnss.c +++ b/drivers/soc/qcom/icnss.c @@ -46,7 +46,14 @@ #include "wlan_firmware_service_v01.h" +#ifdef CONFIG_ICNSS_DEBUG +unsigned long qmi_timeout = 3000; +module_param(qmi_timeout, ulong, 0600); + +#define WLFW_TIMEOUT_MS qmi_timeout +#else #define WLFW_TIMEOUT_MS 3000 +#endif #define WLFW_SERVICE_INS_ID_V01 0 #define WLFW_CLIENT_ID 0x4b4e454c #define MAX_PROP_SIZE 32 |
