msm: clock-8974: Correct LPASS measure mux settings
The LPASS debug mux index in the GCC top level mux
and the bit to activate the debug mux output have
been updated in documentation. Update the code to
reflect this.
Change-Id: Iad40c91ddba756a0fad455b93bf0f725ff27eae6
Signed-off-by: Vikram Mulukutla <markivx@codeaurora.org>
diff --git a/arch/arm/mach-msm/clock-8974.c b/arch/arm/mach-msm/clock-8974.c
index 5780bcb..6dd30b2 100644
--- a/arch/arm/mach-msm/clock-8974.c
+++ b/arch/arm/mach-msm/clock-8974.c
@@ -4579,12 +4579,12 @@
break;
case LPASS_BASE:
- clk_sel = 0x169;
+ clk_sel = 0x161;
regval = BVAL(11, 0, measure_mux[i].debug_mux);
writel_relaxed(regval, LPASS_REG_BASE(LPASS_DEBUG_CLK_CTL_REG));
/* Activate debug clock output */
- regval |= BIT(16);
+ regval |= BIT(20);
writel_relaxed(regval, LPASS_REG_BASE(LPASS_DEBUG_CLK_CTL_REG));
break;