From 52316d0848d0fa7d61264fa5b4635cee66575b3a Mon Sep 17 00:00:00 2001 From: Mike Corrigan Date: Tue, 12 Oct 2010 22:05:32 -0500 Subject: [PATCH] [ARM] tegra: stingray: fixed Bluetooth-bypass switch for DAC2-DAP4 Corrected the DAP4 input source. Corrected the DAP control register index. Change-Id: I514bdb30ead272cf1dfb65acfae06c3654ea935a Signed-off-by: Mike Corrigan Signed-off-by: Iliyan Malchev --- arch/arm/mach-tegra/board-stingray.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-tegra/board-stingray.c b/arch/arm/mach-tegra/board-stingray.c index 1d4712c41ea1..1d58e54f4623 100644 --- a/arch/arm/mach-tegra/board-stingray.c +++ b/arch/arm/mach-tegra/board-stingray.c @@ -901,7 +901,7 @@ static void init_dac2(bool bluetooth) APB_MISC_DAS_DAC_INPUT_DATA_CLK_SEL_0 + 4); } else { /* DAC2 -> DAP4 for Bluetooth Voice */ - das_writel((!master)<<31 | 19, APB_MISC_DAS_DAP_CTRL_SEL_0 + 4); + das_writel((!master)<<31 | 1, APB_MISC_DAS_DAP_CTRL_SEL_0 + 12); das_writel(3<<28 | 3<<24 | 3, APB_MISC_DAS_DAC_INPUT_DATA_CLK_SEL_0 + 4); } -- 2.34.1