summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/mwifiex/main.h
diff options
context:
space:
mode:
authorAmitkumar Karwar2014-02-28 04:35:17 +0100
committerJohn W. Linville2014-02-28 20:33:47 +0100
commit0c9c4a09f752e3cbe47fd5ea2d7f5f4837f95580 (patch)
treea6e1559fb34bdf53e83f6d08a3c16d07d5c9642b /drivers/net/wireless/mwifiex/main.h
parentmwifiex: get rid of extra num_cmd_timeout variable (diff)
downloadkernel-qcow2-linux-0c9c4a09f752e3cbe47fd5ea2d7f5f4837f95580.tar.gz
kernel-qcow2-linux-0c9c4a09f752e3cbe47fd5ea2d7f5f4837f95580.tar.xz
kernel-qcow2-linux-0c9c4a09f752e3cbe47fd5ea2d7f5f4837f95580.zip
mwifiex: replace num_cmd_timeout with is_cmd_timedout
Command timeout happens when firmware goes into bad state. There is no chance that next command will be successful after this. Hence we will maintain a flag instead of count. Signed-off-by: Amitkumar Karwar <akarwar@marvell.com> Signed-off-by: Bing Zhao <bzhao@marvell.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/mwifiex/main.h')
-rw-r--r--drivers/net/wireless/mwifiex/main.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/mwifiex/main.h b/drivers/net/wireless/mwifiex/main.h
index df09ddb64eec..51ac9e3355a2 100644
--- a/drivers/net/wireless/mwifiex/main.h
+++ b/drivers/net/wireless/mwifiex/main.h
@@ -719,7 +719,7 @@ struct mwifiex_adapter {
struct cmd_ctrl_node *curr_cmd;
/* spin lock for command */
spinlock_t mwifiex_cmd_lock;
- u32 num_cmd_timeout;
+ u8 is_cmd_timedout;
u16 last_init_cmd;
struct timer_list cmd_timer;
struct list_head cmd_free_q;