From patchwork Tue Aug 18 06:51:47 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kuninori Morimoto X-Patchwork-Id: 42268 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n7I6pDG4027249 for ; Tue, 18 Aug 2009 06:51:52 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750847AbZHRGvu (ORCPT ); Tue, 18 Aug 2009 02:51:50 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751949AbZHRGvt (ORCPT ); Tue, 18 Aug 2009 02:51:49 -0400 Received: from mail.renesas.com ([202.234.163.13]:51192 "EHLO mail04.idc.renesas.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750847AbZHRGvt (ORCPT ); Tue, 18 Aug 2009 02:51:49 -0400 X-AuditID: ac140387-00000006000005fd-5a-4a8a4f8478d1 Received: from guardian03.idc.renesas.com ([172.20.8.202]) by mail04.idc.renesas.com (sendmail) with ESMTP id n7I6pmHb008793; Tue, 18 Aug 2009 15:51:48 +0900 (JST) Received: (from root@localhost) by guardian03.idc.renesas.com with id n7I6pmaM011979; Tue, 18 Aug 2009 15:51:48 +0900 (JST) Received: from mta04.idc.renesas.com (localhost [127.0.0.1]) by mta04.idc.renesas.com with ESMTP id n7I6pkWo008875; Tue, 18 Aug 2009 15:51:46 +0900 (JST) Received: from PG10870.renesas.com ([172.30.8.159]) by ims05.idc.renesas.com (Sendmail) with ESMTPA id <0KOK00CGM8ECAI@ims05.idc.renesas.com>; Tue, 18 Aug 2009 15:51:48 +0900 (JST) Date: Tue, 18 Aug 2009 15:51:47 +0900 From: Kuninori Morimoto Subject: [PATCH] clock-sh7724.c: modify divisors value To: linux-sh@vger.kernel.org Cc: Magnus Damm , lethal@linux-sh.org Message-id: MIME-version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-type: text/plain; charset=US-ASCII User-Agent: SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.7 Emacs/22.1 (i386-mingw-nt5.1.2600) MULE/5.0 (SAKAKI) Meadow/3.00-dev (KIKU) X-Brightmail-Tracker: AAAAAA== Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org This patch modify divisors value becouse FRQCRA :: IFC can use b'0001 Signed-off-by: Kuninori Morimoto --- arch/sh/kernel/cpu/sh4a/clock-sh7724.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/sh/kernel/cpu/sh4a/clock-sh7724.c b/arch/sh/kernel/cpu/sh4a/clock-sh7724.c index 34611d9..627588d 100644 --- a/arch/sh/kernel/cpu/sh4a/clock-sh7724.c +++ b/arch/sh/kernel/cpu/sh4a/clock-sh7724.c @@ -127,7 +127,7 @@ struct clk *main_clks[] = { &div3_clk, }; -static int divisors[] = { 2, 0, 4, 6, 8, 12, 16, 0, 24, 32, 36, 48, 0, 72 }; +static int divisors[] = { 2, 3, 4, 6, 8, 12, 16, 0, 24, 32, 36, 48, 0, 72 }; static struct clk_div_mult_table div4_table = { .divisors = divisors,