summaryrefslogtreecommitdiff
path: root/drivers/net
diff options
context:
space:
mode:
authorSarada Prasanna Garnayak <sgarna@codeaurora.org>2017-03-14 20:47:38 +0530
committerGerrit - the friendly Code Review server <code-review@localhost>2017-03-17 09:34:36 -0700
commite9634dbd287d0d1c4a6588ba3683562415358592 (patch)
tree681877c55553f7b819328fbad29f944f7069192c /drivers/net
parent3f942f9f968e02b8dbaa9a76f1d095aebe7b3b15 (diff)
ath10k: remove the unused code from ath10k snoc driver
Remove the unused copy engine temp variable from the wlan enable method. Change-Id: I8572464705298eeb32f7752a4803094a72344a36 Signed-off-by: Sarada Prasanna Garnayak <sgarna@codeaurora.org>
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/wireless/ath/ath10k/snoc.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/drivers/net/wireless/ath/ath10k/snoc.c b/drivers/net/wireless/ath/ath10k/snoc.c
index f6eb131e1e1b..d24c09455e41 100644
--- a/drivers/net/wireless/ath/ath10k/snoc.c
+++ b/drivers/net/wireless/ath/ath10k/snoc.c
@@ -1034,10 +1034,8 @@ static int ath10k_snoc_get_soc_info(struct ath10k *ar)
static int ath10k_snoc_wlan_enable(struct ath10k *ar)
{
struct icnss_wlan_enable_cfg cfg;
- int pipe_num, i;
+ int pipe_num;
struct ath10k_ce_tgt_pipe_cfg tgt_cfg[CE_COUNT_MAX];
- struct ce_tgt_pipe_cfg *tmp_tgt_cfg;
- struct ce_svc_pipe_cfg *tmp_svc_cfg;
for (pipe_num = 0; pipe_num < CE_COUNT_MAX; pipe_num++) {
tgt_cfg[pipe_num].pipe_num =
@@ -1066,12 +1064,6 @@ static int ath10k_snoc_wlan_enable(struct ath10k *ar)
cfg.shadow_reg_cfg = (struct icnss_shadow_reg_cfg *)
&target_shadow_reg_cfg_map;
- for (i = 0; i < cfg.num_ce_tgt_cfg; i++)
- tmp_tgt_cfg = cfg.ce_tgt_cfg + i;
-
- for (i = 0; i < cfg.num_ce_svc_pipe_cfg; i++)
- tmp_svc_cfg = cfg.ce_svc_cfg + i;
-
return icnss_wlan_enable(&cfg, ICNSS_MISSION, "5.1.0.26N");
}