From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Mundt Date: Tue, 16 Nov 2010 04:30:36 +0000 Subject: Re: [PATCH] ARM: mach-shmobile: ap4evb: add fsib 44100Hz rate fixup Message-Id: <20101116043036.GA32223@linux-sh.org> List-Id: References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-sh@vger.kernel.org On Tue, Nov 16, 2010 at 01:12:43PM +0900, Kuninori Morimoto wrote: > This patch disable fdiv_clk when 44.1kHz > > Signed-off-by: Kuninori Morimoto > --- > arch/arm/mach-shmobile/board-ap4evb.c | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/arch/arm/mach-shmobile/board-ap4evb.c b/arch/arm/mach-shmobile/board-ap4evb.c > index d326054..355e3cf 100644 > --- a/arch/arm/mach-shmobile/board-ap4evb.c > +++ b/arch/arm/mach-shmobile/board-ap4evb.c > @@ -585,6 +585,7 @@ static int fsi_set_rate(int is_porta, int rate) > switch (rate) { > case 44100: > clk_set_rate(fsib_clk, clk_round_rate(fsib_clk, 11283000)); > + clk_set_rate(fdiv_clk, clk_round_rate(fsib_clk, 11283000)); Shouldn't this be clk_set_rate(fdiv_clk, clk_round_rate(fdiv_clk, 11283000)); ?