diff options
author | Amitkumar Karwar <akarwar@marvell.com> | 2014-02-27 22:35:16 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-02-28 14:33:46 -0500 |
commit | e50e06fd0418d5994fad8ca8d3ce049403059112 (patch) | |
tree | 6539e431fd6bfefb598c02af1cbdafa619053b44 /drivers/net | |
parent | 38ec3f3f6142d1517ce0f1c96502fd1c05d2fc52 (diff) |
mwifiex: get rid of extra num_cmd_timeout variable
We already have one in mwifiex_adapter structure.
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')
-rw-r--r-- | drivers/net/wireless/mwifiex/cmdevt.c | 3 | ||||
-rw-r--r-- | drivers/net/wireless/mwifiex/main.h | 1 | ||||
-rw-r--r-- | drivers/net/wireless/mwifiex/util.c | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/drivers/net/wireless/mwifiex/cmdevt.c b/drivers/net/wireless/mwifiex/cmdevt.c index 83195d96e78c..686943c52d18 100644 --- a/drivers/net/wireless/mwifiex/cmdevt.c +++ b/drivers/net/wireless/mwifiex/cmdevt.c | |||
@@ -892,7 +892,6 @@ mwifiex_cmd_timeout_func(unsigned long function_context) | |||
892 | struct timeval tstamp; | 892 | struct timeval tstamp; |
893 | 893 | ||
894 | adapter->num_cmd_timeout++; | 894 | adapter->num_cmd_timeout++; |
895 | adapter->dbg.num_cmd_timeout++; | ||
896 | if (!adapter->curr_cmd) { | 895 | if (!adapter->curr_cmd) { |
897 | dev_dbg(adapter->dev, "cmd: empty curr_cmd\n"); | 896 | dev_dbg(adapter->dev, "cmd: empty curr_cmd\n"); |
898 | return; | 897 | return; |
@@ -916,7 +915,7 @@ mwifiex_cmd_timeout_func(unsigned long function_context) | |||
916 | adapter->dbg.num_cmd_host_to_card_failure); | 915 | adapter->dbg.num_cmd_host_to_card_failure); |
917 | 916 | ||
918 | dev_err(adapter->dev, "num_cmd_timeout = %d\n", | 917 | dev_err(adapter->dev, "num_cmd_timeout = %d\n", |
919 | adapter->dbg.num_cmd_timeout); | 918 | adapter->num_cmd_timeout); |
920 | dev_err(adapter->dev, "num_tx_timeout = %d\n", | 919 | dev_err(adapter->dev, "num_tx_timeout = %d\n", |
921 | adapter->dbg.num_tx_timeout); | 920 | adapter->dbg.num_tx_timeout); |
922 | 921 | ||
diff --git a/drivers/net/wireless/mwifiex/main.h b/drivers/net/wireless/mwifiex/main.h index e9d64fc7d786..df09ddb64eec 100644 --- a/drivers/net/wireless/mwifiex/main.h +++ b/drivers/net/wireless/mwifiex/main.h | |||
@@ -145,7 +145,6 @@ struct mwifiex_dbg { | |||
145 | u32 num_cmd_assoc_success; | 145 | u32 num_cmd_assoc_success; |
146 | u32 num_cmd_assoc_failure; | 146 | u32 num_cmd_assoc_failure; |
147 | u32 num_tx_timeout; | 147 | u32 num_tx_timeout; |
148 | u32 num_cmd_timeout; | ||
149 | u16 timeout_cmd_id; | 148 | u16 timeout_cmd_id; |
150 | u16 timeout_cmd_act; | 149 | u16 timeout_cmd_act; |
151 | u16 last_cmd_id[DBG_CMD_NUM]; | 150 | u16 last_cmd_id[DBG_CMD_NUM]; |
diff --git a/drivers/net/wireless/mwifiex/util.c b/drivers/net/wireless/mwifiex/util.c index 098de8810729..7022c69f0a29 100644 --- a/drivers/net/wireless/mwifiex/util.c +++ b/drivers/net/wireless/mwifiex/util.c | |||
@@ -104,6 +104,7 @@ int mwifiex_get_debug_info(struct mwifiex_private *priv, | |||
104 | info->pm_wakeup_fw_try = adapter->pm_wakeup_fw_try; | 104 | info->pm_wakeup_fw_try = adapter->pm_wakeup_fw_try; |
105 | info->is_hs_configured = adapter->is_hs_configured; | 105 | info->is_hs_configured = adapter->is_hs_configured; |
106 | info->hs_activated = adapter->hs_activated; | 106 | info->hs_activated = adapter->hs_activated; |
107 | info->num_cmd_timeout = adapter->num_cmd_timeout; | ||
107 | info->num_cmd_host_to_card_failure | 108 | info->num_cmd_host_to_card_failure |
108 | = adapter->dbg.num_cmd_host_to_card_failure; | 109 | = adapter->dbg.num_cmd_host_to_card_failure; |
109 | info->num_cmd_sleep_cfm_host_to_card_failure | 110 | info->num_cmd_sleep_cfm_host_to_card_failure |
@@ -119,7 +120,6 @@ int mwifiex_get_debug_info(struct mwifiex_private *priv, | |||
119 | info->num_cmd_assoc_failure = | 120 | info->num_cmd_assoc_failure = |
120 | adapter->dbg.num_cmd_assoc_failure; | 121 | adapter->dbg.num_cmd_assoc_failure; |
121 | info->num_tx_timeout = adapter->dbg.num_tx_timeout; | 122 | info->num_tx_timeout = adapter->dbg.num_tx_timeout; |
122 | info->num_cmd_timeout = adapter->dbg.num_cmd_timeout; | ||
123 | info->timeout_cmd_id = adapter->dbg.timeout_cmd_id; | 123 | info->timeout_cmd_id = adapter->dbg.timeout_cmd_id; |
124 | info->timeout_cmd_act = adapter->dbg.timeout_cmd_act; | 124 | info->timeout_cmd_act = adapter->dbg.timeout_cmd_act; |
125 | memcpy(info->last_cmd_id, adapter->dbg.last_cmd_id, | 125 | memcpy(info->last_cmd_id, adapter->dbg.last_cmd_id, |