Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -126,14 +126,14 @@ void ath9k_wmi_tasklet(unsigned long data);
	do {								\
		ret = ath9k_wmi_cmd(priv->wmi, _wmi_cmd, NULL, 0,	\
				    (u8 *) &cmd_rsp,			\
				    sizeof(cmd_rsp), HZ);		\
				    sizeof(cmd_rsp), HZ*2);		\
	} while (0)

#define WMI_CMD_BUF(_wmi_cmd, _buf)					\
	do {								\
		ret = ath9k_wmi_cmd(priv->wmi, _wmi_cmd,		\
				    (u8 *) _buf, sizeof(*_buf),		\
				    &cmd_rsp, sizeof(cmd_rsp), HZ);	\
				    &cmd_rsp, sizeof(cmd_rsp), HZ*2);	\
	} while (0)

#endif /* WMI_H */