From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tony Lindgren Subject: Re: [PATCH] The clockdomain of clkout2_src_ck fixed Date: Fri, 5 Sep 2008 09:53:25 -0700 Message-ID: <20080905165325.GH24202@atomide.com> References: <20080904014448.GP23085@atomide.com> <1220518469-26036-1-git-send-email-tomi.valkeinen@nokia.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mho-01-bos.mailhop.org ([63.208.196.178]:58049 "EHLO mho-01-bos.mailhop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751345AbYIEQx1 (ORCPT ); Fri, 5 Sep 2008 12:53:27 -0400 Content-Disposition: inline In-Reply-To: Sender: linux-omap-owner@vger.kernel.org List-Id: linux-omap@vger.kernel.org To: Paul Walmsley Cc: Tomi Valkeinen , linux-omap@vger.kernel.org * Paul Walmsley [080904 10:14]: > On Thu, 4 Sep 2008, Tomi Valkeinen wrote: > > > The clockdomain of clkout2_src_ck was set to "core_clkdm", which does not > > exist. > > This is fine for now. Technically, clkout2_src_ck is in the CM > clockdomain, and there are some patches here that will add that; but until > those are posted, this is good enough. Pushing today. Tony > > Acked-by: Paul Walmsley > > > > > Signed-off-by: Tomi Valkeinen > > --- > > arch/arm/mach-omap2/clock34xx.h | 2 +- > > 1 files changed, 1 insertions(+), 1 deletions(-) > > > > diff --git a/arch/arm/mach-omap2/clock34xx.h b/arch/arm/mach-omap2/clock34xx.h > > index 5d855e9..8da0097 100644 > > --- a/arch/arm/mach-omap2/clock34xx.h > > +++ b/arch/arm/mach-omap2/clock34xx.h > > @@ -1010,7 +1010,7 @@ static struct clk clkout2_src_ck = { > > .clksel_mask = OMAP3430_CLKOUT2SOURCE_MASK, > > .clksel = clkout2_src_clksel, > > .flags = CLOCK_IN_OMAP343X | RATE_PROPAGATES, > > - .clkdm = { .name = "core_clkdm" }, > > + .clkdm = { .name = "core_l4_clkdm" }, > > .recalc = &omap2_clksel_recalc, > > }; > > > > -- > > 1.6.0.1 > > > > -- > > To unsubscribe from this list: send the line "unsubscribe linux-omap" in > > the body of a message to majordomo@vger.kernel.org > > More majordomo info at http://vger.kernel.org/majordomo-info.html > > > > > - Paul