Commit ba443701 authored by Sujith's avatar Sujith Committed by John W. Linville

ath9k_htc: Increase WMI timeout value

Completion of WMI commands take a longer time
on some platforms. Increase the timeout value
to handle this.
Signed-off-by: default avatarSujith <Sujith.Manoharan@atheros.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 5ab0af32
...@@ -126,14 +126,14 @@ void ath9k_wmi_tasklet(unsigned long data); ...@@ -126,14 +126,14 @@ void ath9k_wmi_tasklet(unsigned long data);
do { \ do { \
ret = ath9k_wmi_cmd(priv->wmi, _wmi_cmd, NULL, 0, \ ret = ath9k_wmi_cmd(priv->wmi, _wmi_cmd, NULL, 0, \
(u8 *) &cmd_rsp, \ (u8 *) &cmd_rsp, \
sizeof(cmd_rsp), HZ); \ sizeof(cmd_rsp), HZ*2); \
} while (0) } while (0)
#define WMI_CMD_BUF(_wmi_cmd, _buf) \ #define WMI_CMD_BUF(_wmi_cmd, _buf) \
do { \ do { \
ret = ath9k_wmi_cmd(priv->wmi, _wmi_cmd, \ ret = ath9k_wmi_cmd(priv->wmi, _wmi_cmd, \
(u8 *) _buf, sizeof(*_buf), \ (u8 *) _buf, sizeof(*_buf), \
&cmd_rsp, sizeof(cmd_rsp), HZ); \ &cmd_rsp, sizeof(cmd_rsp), HZ*2); \
} while (0) } while (0)
#endif /* WMI_H */ #endif /* WMI_H */
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