[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <AANLkTin3wPBZtgFp-AvEFhKG3X9Q7B=xFN9jR6fGjr+i@mail.gmail.com>
Date: Sun, 20 Feb 2011 23:52:28 -0800
From: Colin Cross <ccross@...roid.com>
To: Olof Johansson <olof@...om.net>
Cc: linux-tegra@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
konkers@...roid.com, Russell King <linux@....linux.org.uk>,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2 15/21] ARM: tegra: clock: Round rate before setting rate
On Sun, Feb 20, 2011 at 8:19 PM, Olof Johansson <olof@...om.net> wrote:
> Hi,
>
> On Sat, Feb 19, 2011 at 2:26 PM, Colin Cross <ccross@...roid.com> wrote:
>
>> diff --git a/arch/arm/mach-tegra/clock.c b/arch/arm/mach-tegra/clock.c
>> index 8d01a49..9798585 100644
>> --- a/arch/arm/mach-tegra/clock.c
>> +++ b/arch/arm/mach-tegra/clock.c
>> @@ -86,6 +86,7 @@ static unsigned long clk_predict_rate_from_parent(struct clk *c, struct clk *p)
>>
>> if (c->mul != 0 && c->div != 0) {
>> rate *= c->mul;
>> + rate += c->div / 2; /* round up */
>
> Shouldn't this be "rate += c->div - 1;"?
Yes, will fix
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists