summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaya Erez <merez@codeaurora.org>2016-05-04 21:40:07 +0300
committerJeevan Shriram <jshriram@codeaurora.org>2016-05-05 15:05:55 -0700
commit436e7913d3e30609cbd04cfaac4d69c7b7f05838 (patch)
tree8f1276fc8b6499c7eb897118aa6bc1c273544758
parent77bcd516088c63cc58d217e11830db39e668e4fd (diff)
msm_11ad: keep rf_clk3 on during wil6210 activity
wil6210 FW needs to control rf_clk3 in order to allow the host to disable it. Keep rf_clk3 always on, as the current FW code doesn't support handling of rf_clk3. Change-Id: I552094c64bd9fb360ddd73022fe21a403c245b2f CRs-Fixed: 986130 Signed-off-by: Maya Erez <merez@codeaurora.org>
-rw-r--r--drivers/platform/msm/msm_11ad/msm_11ad.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/platform/msm/msm_11ad/msm_11ad.c b/drivers/platform/msm/msm_11ad/msm_11ad.c
index a8adc2401dbf..6d826590cabc 100644
--- a/drivers/platform/msm/msm_11ad/msm_11ad.c
+++ b/drivers/platform/msm/msm_11ad/msm_11ad.c
@@ -1102,17 +1102,15 @@ static int ops_notify(void *handle, enum wil_platform_event evt)
break;
case WIL_PLATFORM_EVT_PRE_RESET:
/*
- * Enable rf_clk3 clock before resetting the device to ensure
- * stable ref clock during the device reset
+ * TODO: Enable rf_clk3 clock before resetting the device to
+ * ensure stable ref clock during the device reset
*/
- rc = msm_11ad_enable_clk(ctx, &ctx->rf_clk3);
break;
case WIL_PLATFORM_EVT_FW_RDY:
/*
- * Disable rf_clk3 clock after the device is up to allow
+ * TODO: Disable rf_clk3 clock after the device is up to allow
* the device to control it via its GPIO for power saving
*/
- msm_11ad_disable_clk(ctx, &ctx->rf_clk3);
break;
default:
pr_debug("%s: Unhandled event %d\n", __func__, evt);