public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] OMAP: McBSP: Fix CLKR and FSR signal muxing
@ 2010-10-05 12:29 Jarkko Nikula
  2010-10-05 12:29 ` [PATCH 2/3] OMAP: McBSP: Swap CLKS source definition Jarkko Nikula
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Jarkko Nikula @ 2010-10-05 12:29 UTC (permalink / raw)
  To: linux-omap; +Cc: Tony Lindgren, Jarkko Nikula, Paul Walmsley

Fix bit clear. Now it clears all other bits than mask bit where it should
clear only it.

Signed-off-by: Jarkko Nikula <jhnikula@gmail.com>
Cc: Paul Walmsley <paul@pwsan.com>
---
 arch/arm/mach-omap2/mcbsp.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-omap2/mcbsp.c b/arch/arm/mach-omap2/mcbsp.c
index eba9fa1..f6b772e 100644
--- a/arch/arm/mach-omap2/mcbsp.c
+++ b/arch/arm/mach-omap2/mcbsp.c
@@ -34,7 +34,7 @@ void omap2_mcbsp1_mux_clkr_src(u8 mux)
 
 	v = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0);
 	if (mux == CLKR_SRC_CLKR)
-		v &= OMAP2_MCBSP1_CLKR_MASK;
+		v &= ~OMAP2_MCBSP1_CLKR_MASK;
 	else if (mux == CLKR_SRC_CLKX)
 		v |= OMAP2_MCBSP1_CLKR_MASK;
 	omap_ctrl_writel(v, OMAP2_CONTROL_DEVCONF0);
@@ -47,7 +47,7 @@ void omap2_mcbsp1_mux_fsr_src(u8 mux)
 
 	v = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0);
 	if (mux == FSR_SRC_FSR)
-		v &= OMAP2_MCBSP1_FSR_MASK;
+		v &= ~OMAP2_MCBSP1_FSR_MASK;
 	else if (mux == FSR_SRC_FSX)
 		v |= OMAP2_MCBSP1_FSR_MASK;
 	omap_ctrl_writel(v, OMAP2_CONTROL_DEVCONF0);
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2010-10-06  5:44 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-05 12:29 [PATCH 1/3] OMAP: McBSP: Fix CLKR and FSR signal muxing Jarkko Nikula
2010-10-05 12:29 ` [PATCH 2/3] OMAP: McBSP: Swap CLKS source definition Jarkko Nikula
2010-10-05 15:11   ` Paul Walmsley
2010-10-06  5:44   ` Peter Ujfalusi
2010-10-05 12:29 ` [PATCH 3/3] OMAP: McBSP: Remove null omap44xx ops comment Jarkko Nikula
2010-10-05 15:12   ` Paul Walmsley
2010-10-06  5:43   ` Peter Ujfalusi
2010-10-05 15:11 ` [PATCH 1/3] OMAP: McBSP: Fix CLKR and FSR signal muxing Paul Walmsley
2010-10-05 17:41   ` Tony Lindgren
2010-10-06  5:43 ` Peter Ujfalusi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox