summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXun Luo <xunl@qca.qualcomm.com>2014-04-11 17:09:02 -0700
committerPitani Venkata Rajesh Kumar <c_vpitan@qti.qualcomm.com>2014-04-22 11:48:42 +0530
commit64cd2854b448152ff23e435c186cb8e972716a8b (patch)
treecd955bb3db049eff4440aabcd8e9fe18bbccd59e
parent611a3c74b91870f0813657dcf4e5a6cd5c4a8fa0 (diff)
Use FW reported frequencies as center channel frequencies
In LTE CoEx, Rome FW had the change to unify behaviour with Pronto, i.e. reporting channel center frequencies rather than boundaries. To suit for this change, changes in WMA for frequency adjustment is now rolled back. Change-Id: I6d736423e86af2d264b213c3fa7bbd2473598881
-rw-r--r--CORE/SERVICES/WMA/wma.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/CORE/SERVICES/WMA/wma.c b/CORE/SERVICES/WMA/wma.c
index 02ffe355ca1a..506dfe8de829 100644
--- a/CORE/SERVICES/WMA/wma.c
+++ b/CORE/SERVICES/WMA/wma.c
@@ -17146,9 +17146,9 @@ static int wma_channel_avoid_evt_handler(void *handle, u_int8_t *event,
afr_desc = (wmi_avoid_freq_range_desc *) ((void *)param_buf->avd_freq_range
+ freq_range_idx * sizeof(wmi_avoid_freq_range_desc));
sca_indication->avoid_freq_range[freq_range_idx].start_freq =
- afr_desc->start_freq + 10;
- sca_indication->avoid_freq_range[freq_range_idx].end_freq = afr_desc->end_freq
- - 10;
+ afr_desc->start_freq;
+ sca_indication->avoid_freq_range[freq_range_idx].end_freq =
+ afr_desc->end_freq;
}
sme_msg.type = eWNI_SME_CH_AVOID_IND;